Code complete, but untested.

This commit is contained in:
Jonathan Naylor 2020-06-11 10:02:11 +01:00
parent 121c76f3d8
commit c2959466fd
5 changed files with 131 additions and 12 deletions

View file

@ -21,13 +21,17 @@
#include "Config.h"
const uint16_t AX25_MAX_PACKET_LEN = 300U;
class CAX25Frame {
public:
CAX25Frame();
bool append(uint16_t c);
bool checkCRC();
uint8_t m_data[300U];
uint8_t m_data[AX25_MAX_PACKET_LEN];
uint16_t m_length;
uint16_t m_fcs;
};