boards: stm32: Fix User LD1 pin assignment #95190
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The green LED (User LD1) on the NUCLEO-H755ZI-Q board was previously configured
to use pin PA5 in the Device Tree source file (nucleo_h755zi_q.dtsi).
However, according to the board's user manual (UM2408), User LD1 can be connected
to either PA5 or PB0 depending on the solder bridge configuration:
Since PB0 is the default configuration on most boards out of the box, this patch
updates the
green_led
node to use pin PB0 (&gpiob 0
) instead of PA5.Reference:
Signed-off-by: Duc Le [email protected]