From 68b6e4f7ef1796c5c9f8aaf9394a5ed674537813 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Tue, 13 Oct 2020 15:30:47 +0200 Subject: [PATCH] boards/nucleo32: fix arduino pinmap for stm32l011k4 --- boards/common/nucleo32/include/arduino_pinmap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boards/common/nucleo32/include/arduino_pinmap.h b/boards/common/nucleo32/include/arduino_pinmap.h index 5ef875aef7..54e4836e5c 100644 --- a/boards/common/nucleo32/include/arduino_pinmap.h +++ b/boards/common/nucleo32/include/arduino_pinmap.h @@ -40,7 +40,7 @@ extern "C" { #define ARDUINO_PIN_5 GPIO_PIN(PORT_B, 6) #define ARDUINO_PIN_6 GPIO_PIN(PORT_B, 1) #if defined(CPU_MODEL_STM32L031K6) || defined(CPU_MODEL_STM32L432KC) || \ - defined(CPU_MODEL_STM32L412KB) + defined(CPU_MODEL_STM32L412KB) || defined(CPU_MODEL_STM32L011K4) #define ARDUINO_PIN_7 GPIO_PIN(PORT_C, 14) #define ARDUINO_PIN_8 GPIO_PIN(PORT_C, 15) #else