Disable I2CA in all firmware builds

It is unlikely that any future revision of the hardware will use I2CA.
This commit is contained in:
Samuel Holland 2021-08-05 21:14:09 -05:00
parent 3107546c04
commit 3c6488b99e
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ sdcc \
-I. \ -I. \
-DFW_REVISION_STR="\"$(git describe) $(git log -1 --format=%cd --date=iso)\"" \ -DFW_REVISION_STR="\"$(git describe) $(git log -1 --format=%cd --date=iso)\"" \
-DCONFIG_STOCK_FW=1 \ -DCONFIG_STOCK_FW=1 \
-DCONFIG_I2C_A=1 \ -DCONFIG_I2C_A=0 \
build/stock-ivt.rel main.c \ build/stock-ivt.rel main.c \
-o build/fw-stock.ihx -o build/fw-stock.ihx

View File

@ -37,7 +37,7 @@
#define CONFIG_STOCK_FW 1 #define CONFIG_STOCK_FW 1
#endif #endif
#ifndef CONFIG_I2C_A #ifndef CONFIG_I2C_A
#define CONFIG_I2C_A 1 #define CONFIG_I2C_A 0
#endif #endif
#define USB_DEBUG 0 #define USB_DEBUG 0