diff --git a/firmware/config/boards/prometheus/efifeatures.h b/firmware/config/boards/prometheus/efifeatures.h index c6ab72efec..e427df622c 100644 --- a/firmware/config/boards/prometheus/efifeatures.h +++ b/firmware/config/boards/prometheus/efifeatures.h @@ -56,6 +56,22 @@ #undef SERIAL_SPEED #define SERIAL_SPEED 115200 +#ifndef BOARD_TLE6240_COUNT +#define BOARD_TLE6240_COUNT 0 +#endif + +#ifndef BOARD_MC33972_COUNT +#define BOARD_MC33972_COUNT 0 +#endif + +#ifndef BOARD_TLE8888_COUNT +#define BOARD_TLE8888_COUNT 0 +#endif + +// todo: move this outside of efifeatures.h +#define BOARD_EXT_GPIOCHIPS (BOARD_TLE6240_COUNT + BOARD_MC33972_COUNT + BOARD_TLE8888_COUNT) + + #undef EFI_CONSOLE_TX_PORT #define EFI_CONSOLE_TX_PORT GPIOA #undef EFI_CONSOLE_TX_PIN diff --git a/firmware/config/stm32f7ems/efifeatures.h b/firmware/config/stm32f7ems/efifeatures.h index 49669c67b9..2b5ec4788b 100644 --- a/firmware/config/stm32f7ems/efifeatures.h +++ b/firmware/config/stm32f7ems/efifeatures.h @@ -42,6 +42,22 @@ #undef EFI_MEMS #define EFI_MEMS FALSE +#ifndef BOARD_TLE6240_COUNT +#define BOARD_TLE6240_COUNT 0 +#endif + +#ifndef BOARD_MC33972_COUNT +#define BOARD_MC33972_COUNT 0 +#endif + +#ifndef BOARD_TLE8888_COUNT +#define BOARD_TLE8888_COUNT 0 +#endif + +// todo: move this outside of efifeatures.h +#define BOARD_EXT_GPIOCHIPS (BOARD_TLE6240_COUNT + BOARD_MC33972_COUNT + BOARD_TLE8888_COUNT) + + #undef EFI_CAN_SUPPORT #define EFI_CAN_SUPPORT FALSE