Files
trail-mate/third_party/codec2/src/ldpc_codes.h
T
vicliu d320b6511d Unify PlatformIO and ESP-IDF around a shared UI/runtime shellRefactor/repo structure (#11)
* Unify PlatformIO and ESP-IDF around a shared UI/runtime shell
2026-03-12 01:17:46 +08:00

28 lines
437 B
C

/*
FILE...: ldpc_codes.h
AUTHOR.: David Rowe
CREATED: July 2020
Array of LDPC codes used for various Codec2 waveforms.
*/
#ifndef __LDPC_CODES__
#ifdef __cplusplus
extern "C" {
#endif
#include "mpdecode_core.h"
extern struct LDPC ldpc_codes[];
int ldpc_codes_num(void);
void ldpc_codes_list();
int ldpc_codes_find(char name[]);
void ldpc_codes_setup(struct LDPC *ldpc, char name[]);
#ifdef __cplusplus
}
#endif
#endif