From 679b11b03f234e9f888d61c4a8a4f534544b8f2c Mon Sep 17 00:00:00 2001 From: "Daniel P. Carvalho" Date: Thu, 9 Jan 2020 11:20:32 -0600 Subject: [PATCH] boards/arm/stm32l4/nucleo-l432kc/src/stm32_pwm.c: Fix stm32_pwm.c build error, 'OK' undeclared. --- boards/arm/stm32l4/nucleo-l432kc/src/stm32_pwm.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/boards/arm/stm32l4/nucleo-l432kc/src/stm32_pwm.c b/boards/arm/stm32l4/nucleo-l432kc/src/stm32_pwm.c index 133df7cdb70..06cea8ccb6a 100644 --- a/boards/arm/stm32l4/nucleo-l432kc/src/stm32_pwm.c +++ b/boards/arm/stm32l4/nucleo-l432kc/src/stm32_pwm.c @@ -42,6 +42,7 @@ #include +#include #include #include @@ -62,7 +63,7 @@ /* Configuration **************************************************************/ /* PWM * - * The STM3240G-Eval has no real on-board PWM devices, but the board can be + * The nucleo-l432kc has no real on-board PWM devices, but the board can be * configured to output a pulse train using variously unused pins on the board * for PWM output (see board.h for details of pins). */