GNU Radio's SATELLITES Package
pdu_scrambler_impl.h
Go to the documentation of this file.
1/* -*- c++ -*- */
2/*
3 * Copyright 2022 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_PDU_SCRAMBLER_IMPL_H
12#define INCLUDED_SATELLITES_PDU_SCRAMBLER_IMPL_H
13
15#include <vector>
16
17namespace gr {
18namespace satellites {
19
21{
22private:
23 const std::vector<uint8_t> d_sequence;
24
25public:
26 pdu_scrambler_impl(const std::vector<uint8_t>& sequence);
28
29 void forecast(int noutput_items, gr_vector_int& ninput_items_required);
30
31 int general_work(int noutput_items,
32 gr_vector_int& ninput_items,
33 gr_vector_const_void_star& input_items,
34 gr_vector_void_star& output_items);
35
36 void msg_handler(pmt::pmt_t pmt_msg);
37};
38
39} // namespace satellites
40} // namespace gr
41
42#endif /* INCLUDED_SATELLITES_PDU_SCRAMBLER_IMPL_H */
Definition: pdu_scrambler_impl.h:21
void forecast(int noutput_items, gr_vector_int &ninput_items_required)
pdu_scrambler_impl(const std::vector< uint8_t > &sequence)
void msg_handler(pmt::pmt_t pmt_msg)
int general_work(int noutput_items, gr_vector_int &ninput_items, gr_vector_const_void_star &input_items, gr_vector_void_star &output_items)
PDU Scrambler.
Definition: pdu_scrambler.h:31
Definition: ax100_decode.h:17