Initial import

This commit is contained in:
nzasch
2022-10-24 19:13:54 +02:00
commit 5f6eda2f1c
8 changed files with 418 additions and 0 deletions

19
arphy.h Normal file
View File

@@ -0,0 +1,19 @@
/** @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 */