diff options
Diffstat (limited to 'fw/eeprom.h')
| -rw-r--r-- | fw/eeprom.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/fw/eeprom.h b/fw/eeprom.h index 47f02e6..96d8482 100644 --- a/fw/eeprom.h +++ b/fw/eeprom.h @@ -5,10 +5,8 @@ * * Usage: * - * #include <stdbool> * #include <stdint.h> * #include "types.h" - * #include "can.h" * #include "eeprom.h" */ @@ -21,5 +19,3 @@ typedef U16 EepromAddr; void eepromInit(void); Status eepromWrite(EepromAddr addr, U8 data[], U8 size); Status eepromRead(EepromAddr addr, U8 data[], U8 size); -Status eepromWriteCanId(EepromAddr addr, const CanId *id); -Status eepromReadCanId(EepromAddr addr, CanId *id); |