File: ra_decoder_gen.h

package info (click to toggle)
gr-satellites 5.8.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,836 kB
  • sloc: python: 29,546; cpp: 5,448; ansic: 1,247; sh: 118; makefile: 24
file content (30 lines) | stat: -rw-r--r-- 553 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* -*- c -*- */
/*
 * Copyright 2015-2019 Miklos Maroti
 * Copyright 2019 Daniel Estevez <daniel@destevez.net> (reentrant version)
 *
 * This file is part of gr-satellites
 *
 * SPDX-License-Identifier: GPL-3.0-or-later
 *
 */

#ifndef RA_DECODER_GEN_H
#define RA_DECODER_GEN_H

#include "ra_config.h"

#ifdef __cplusplus
extern "C" {
#endif

void ra_decoder_gen(struct ra_context* ctx,
                    float* softbits,
                    ra_word_t* packet,
                    int passes);

#ifdef __cplusplus
}
#endif

#endif // RA_DECODER_GEN_H