GNU Radio's SATELLITES Package
nrzi_encode_impl.h
Go to the documentation of this file.
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2020 Daniel Estevez <daniel@destevez.net>
4  *
5  * This file is part of gr-satellites
6  *
7  * SPDX-License-Identifier: GPL-3.0-or-later
8  *
9  */
10 
11 #ifndef INCLUDED_SATELLITES_NRZI_ENCODE_IMPL_H
12 #define INCLUDED_SATELLITES_NRZI_ENCODE_IMPL_H
13 
14 #include <satellites/nrzi_encode.h>
15 
16 namespace gr {
17 namespace satellites {
18 
20 {
21 private:
22  uint8_t d_last;
23 
24 public:
27 
28  // Where all the action really happens
29  int work(int noutput_items,
30  gr_vector_const_void_star& input_items,
31  gr_vector_void_star& output_items);
32 };
33 
34 } // namespace satellites
35 } // namespace gr
36 
37 #endif /* INCLUDED_SATELLITES_NRZI_ENCODE_IMPL_H */
Definition: nrzi_encode_impl.h:19
int work(int noutput_items, gr_vector_const_void_star &input_items, gr_vector_void_star &output_items)
NRZI encode.
Definition: nrzi_encode.h:25
Definition: ax100_decode.h:17