Skip to content

NUCLEO_L433RC_P: fix pins definitions #6330

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
Mar 20, 2018
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 @@ -111,7 +111,6 @@ typedef enum {
PC_14 = 0x2E,
PC_15 = 0x2F,


PD_2 = 0x32,
#ifdef STM32L433_100PINS // LQFP100 or UFBGA100 versions
PD_0 = 0x30,
Expand Down Expand Up @@ -165,10 +164,6 @@ typedef enum {
A3 = PC_2,
A4 = PC_1,
A5 = PC_0,

A6 = PA_7,
A7 = PA_2,

D0 = PA_2,
D1 = PA_3,
D2 = PA_12,
Expand All @@ -183,8 +178,10 @@ typedef enum {
D11 = PB_15,
D12 = PB_14,
D13 = PB_13,
D14 = PB_7,
D15 = PB_8,

// STDIO for console print
// STDIO for console print
#ifdef MBED_CONF_TARGET_STDIO_UART_TX
STDIO_UART_TX = MBED_CONF_TARGET_STDIO_UART_TX,
#else
Expand All @@ -197,12 +194,12 @@ typedef enum {
#endif

// Generic signals namings
LED1 = PA_5,
LED2 = PA_5,
LED3 = PA_5,
LED4 = PA_5,
LED1 = PB_13,
LED2 = PB_13,
LED3 = PB_13,
LED4 = PB_13,
USER_BUTTON = PC_13,
BUTTON1 = USER_BUTTON,
BUTTON1 = USER_BUTTON,
SERIAL_TX = STDIO_UART_TX,
SERIAL_RX = STDIO_UART_RX,
USBTX = STDIO_UART_TX,
Expand All @@ -215,7 +212,7 @@ typedef enum {
SPI_CS = D10,
PWM_OUT = D9,

//USB pins
// USB pins
USB_DM = PA_11,
USB_DP = PA_12,
USB_NOE = PA_13,
Expand Down