UoS³ Flight Computer Firmware
 All Data Structures Files Functions Groups Pages
packet.h
1 /* @file packet.h
2  *
3  * @ingroup tests
4  *
5  * @{
6  */
7 
8 #ifndef __PACKET_TEST_H__
9 #define __PACKET_TEST_H__
10 
11 #include "../../firmware.h"
12 
13 bool test_interleave(void);
14 bool test_crc16(void);
15 bool test_sign(void);
16 bool test_ldpc(void);
17 bool test_packet_transmission_telecommand(void);
18 bool test_packet_transmission_telemetry(void);
19 
20 bool packet_tests(void);
21 
22 #endif /* __PACKET_TEST_H__ */
23