Question
Bug in BSP driver for STM32H743-EVAL onboard LEDs
In case anybody wondered why the red LED of STM32H743-EVAL does not work unless I/O extender is enabled - here is the fix.
In this place
do this change:
static const uint32_t LED_PIN[LEDn] = {LED1_PIN,
#if (USE_BSP_IO_CLASS > 0)
LED2_PIN,
#else
0,
#endif
LED3_PIN,
#if (USE_BSP_IO_CLASS > 0)
LED4_PIN
#else
0,
#endif
};Maybe applies to other similar boards as well.