From 40d174ac7d1cc5c548756bb75b4f36b9b450b8bf Mon Sep 17 00:00:00 2001 From: Damien George Date: Sat, 29 Aug 2020 14:00:24 +1000 Subject: [PATCH] stm32/powerctrl.h: Include stdbool.h to get definition of bool. Signed-off-by: Damien George --- ports/stm32/powerctrl.h | 1 + 1 file changed, 1 insertion(+) diff --git a/ports/stm32/powerctrl.h b/ports/stm32/powerctrl.h index 6e5f899a4..9f223e794 100644 --- a/ports/stm32/powerctrl.h +++ b/ports/stm32/powerctrl.h @@ -26,6 +26,7 @@ #ifndef MICROPY_INCLUDED_STM32_POWERCTRL_H #define MICROPY_INCLUDED_STM32_POWERCTRL_H +#include #include void SystemClock_Config(void);