20 lines
442 B
C
20 lines
442 B
C
/** @file
|
|
* @brief armando, protocollo arphy
|
|
*
|
|
* https://ciapini.wiki.esiliati.org/index.php/ArPhy
|
|
*
|
|
*/
|
|
|
|
#ifndef ARPHY_H
|
|
#define ARPHY_H
|
|
|
|
#include "arphy_fec.h"
|
|
#include "arphy_interleaver.h"
|
|
|
|
uint8_t arphy_data2symbol(uint8_t *InData, uint8_t *ModulationSymbolsBuffer);
|
|
uint8_t arphy_symbol2data(uint8_t *OutData, uint8_t *ModulationSymbolsBuffer);
|
|
uint8_t arphy_generate_symbol_buffer(uint8_t *SymbolBuffer);
|
|
|
|
#endif /* ARPHY_H */
|
|
|