aboutsummaryrefslogtreecommitdiffstats
path: root/fw/eeprom.h
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2025-11-01 15:23:59 -0400
committerSam Anthony <sam@samanthony.xyz>2025-11-01 15:23:59 -0400
commitd0ceeb4e2ad98c2f5698d78513143a39c6f36b95 (patch)
tree23f2fb355c01a3acd4b64f40a77cf3750d35784d /fw/eeprom.h
parent98b07898f98fb667adcece3348e63941673327c0 (diff)
downloadcan-gauge-interface-d0ceeb4e2ad98c2f5698d78513143a39c6f36b95.zip
serialization module
Diffstat (limited to 'fw/eeprom.h')
-rw-r--r--fw/eeprom.h4
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);