Skip to content

fix(nucleo_g431k): add missing PinName in digitalPin array #2403

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 17, 2024
Merged
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ const PinName digitalPin[] = {
PA_5, // D18/A4 - SB3 ON also connected to PB7
PA_6, // D19/A5 - SB2 ON also connected to PA15
PA_7, // D20/A6
PA_2 // D21/A7 - SB1 ON VCP TX
PA_2, // D21/A7 - SB1 ON VCP TX
PB_3, // D22 - D13 if SB7 OFF SB6 ON
PA_13, // D23 - SWDIO
PA_15 // D24 - SWCLK
};

// Analog (Ax) pin number array
Expand Down
Loading