Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
BLACK_F407ZX: invert PF9 and PF10 in digitalPin[]
Invert PF9 and PF10 in digitalPin[] to match their definition in
variant.h
Fixes forum issue:
https://www.stm32duino.com/viewtopic.php?p=6652#p6652

Signed-off-by: Alexandre Bourdiol <[email protected]>
  • Loading branch information
ABOSTM authored and fpistm committed Apr 15, 2021
commit 6206ad0786f73573e5dfe32bc15b939250f5960a
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const PinName digitalPin[] = {
/*PF_10,*/PC_0, // PF_10: Moved to allow contiguous analog pins
PF_8, /*PF_9,*/ // PF_9: Moved to allow contiguous analog pins
PF_6, PF_7,
PF_10, PF_9, // PF_10: LED D2, PF_9: LED D1 (active low)
PF_9, PF_10, // PF_9: LED D1, PF_10: LED D2 (active low)
PF_4, PF_5,
PF_2, PF_3,
PF_0, PF_1,
Expand Down