GNU Radio's SATELLITES Package
golay24.h
Go to the documentation of this file.
1/* -*- c -*- */
2/*
3 * Copyright 2017 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/*
12 This algorithm is based on
13 R.H. Morelos-Zaragoza, The Art of Error Correcting Coding, Wiley, 2002; Section 2.2.3
14*/
15
16#ifndef _GOLAY24_H
17#define _GOLAY24_H
18
19#include <stdint.h>
20
21int decode_golay24(uint32_t* data);
22int encode_golay24(uint32_t* data);
23
24#endif
int decode_golay24(uint32_t *data)
int encode_golay24(uint32_t *data)