M17_Implementations/SP5WWP/lib/encode/symbols.h

23 wiersze
406 B
C
Czysty Zwykły widok Historia

//-------------------------------
// M17 C library - encode/symbols.h
//
// Wojciech Kaczmarski, SP5WWP
// M17 Project, 5 January 2024
//-------------------------------
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
2023-12-29 15:14:41 +00:00
#include <stdint.h>
//dibits-symbols map (TX)
extern const int8_t symbol_map[4];
//End of Transmission symbol pattern
extern const float eot_symbols[8];
#ifdef __cplusplus
}
#endif