diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2025-11-01 15:23:59 -0400 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2025-11-01 15:23:59 -0400 |
| commit | d0ceeb4e2ad98c2f5698d78513143a39c6f36b95 (patch) | |
| tree | 23f2fb355c01a3acd4b64f40a77cf3750d35784d /fw/eeprom.h | |
| parent | 98b07898f98fb667adcece3348e63941673327c0 (diff) | |
| download | can-gauge-interface-d0ceeb4e2ad98c2f5698d78513143a39c6f36b95.zip | |
serialization module
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); |