diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2025-11-10 18:20:28 -0500 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2025-11-10 18:20:28 -0500 |
| commit | 9bc3a97b269b2dcbb2656bcb74d4cbca637d19c4 (patch) | |
| tree | 9d617e8b52ef00d42f50e20acc3d398bdddfea92 /fw/eeprom.h | |
| parent | d69740f148892a28c543afed7eda4ba9b5a5e4e2 (diff) | |
| download | can-gauge-interface-9bc3a97b269b2dcbb2656bcb74d4cbca637d19c4.zip | |
use short register names
Diffstat (limited to 'fw/eeprom.h')
| -rw-r--r-- | fw/eeprom.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fw/eeprom.h b/fw/eeprom.h index 8d3d391..841b659 100644 --- a/fw/eeprom.h +++ b/fw/eeprom.h @@ -12,8 +12,8 @@ */ // Pin mapping -#define EEPROM_CS_TRIS TRISCbits.TRISC5 -#define EEPROM_CS LATCbits.LATC5 +#define EEPROM_CS_TRIS TRISC5 +#define EEPROM_CS RC5 typedef U16 EepromAddr; |