Bug in BSP driver for STM32H743-EVAL onboard LEDs
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
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.
Labels:
- Labels:
-
Bug-report
-
STM32H7 Series
This discussion is locked. Please start a new topic to ask your question.
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2021-02-17 9:25 AM
Hello @Pavel A. ,
Thanks for sharing the solution. It should be helpful for the Community =)
Imen
When your question is answered, please close this topic by clicking "Accept as Solution".
Thanks
Imen
Thanks
Imen
