diff options
Diffstat (limited to 'fw/tests')
| -rw-r--r-- | fw/tests/system/eeprom_can_systest.c | 2 | ||||
| -rw-r--r-- | fw/tests/system/eeprom_systest.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/fw/tests/system/eeprom_can_systest.c b/fw/tests/system/eeprom_can_systest.c index 29c29e0..14e8f2d 100644 --- a/fw/tests/system/eeprom_can_systest.c +++ b/fw/tests/system/eeprom_can_systest.c @@ -14,8 +14,8 @@ #include "system.h" #include "types.h" #include "spi.h" -#include "eeprom.h" #include "can.h" +#include "eeprom.h" static const CanId id = { .type = CAN_ID_STD, diff --git a/fw/tests/system/eeprom_systest.c b/fw/tests/system/eeprom_systest.c index 8285e5c..5261532 100644 --- a/fw/tests/system/eeprom_systest.c +++ b/fw/tests/system/eeprom_systest.c @@ -1,10 +1,12 @@ #include <xc.h> +#include <stdbool.h> #include <stdint.h> #include "system.h" #include "types.h" #include "spi.h" +#include "can.h" #include "eeprom.h" static const U16 addr = {0x00, 0x0A}; |