2021-02-15 11:05 AM
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.
2021-02-17 09:25 AM
Hello @Pavel A. ,
Thanks for sharing the solution. It should be helpful for the Community =)
Imen