UoS³ Flight Computer Firmware
 All Data Structures Files Functions Groups Pages
util.c
1 /* @file util.c
2  *
3  * @author Phil Crump
4  *
5  * @ingroup tests
6  * @{
7  */
8 
9 #include "../../firmware.h"
10 #include "../../test.h"
11 
12 bool util_tests(void)
13 {
14  bool test_state = true;
15 
16  assert_run_print(test_crc(), "Util CRC", test_state);
17  assert_run_print(test_pn9(), "Util PN9", test_state);
18  assert_run_print(test_shake(), "Util SHAKE", test_state);
19 
20  return test_state;
21 }
22