From afe0a1356633baf7ba117295fa57c93fb8e0d8a3 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Fri, 16 Jul 2021 12:44:35 +0200 Subject: [PATCH] performing LED init as well --- stm32h7/STM32TestTask.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/stm32h7/STM32TestTask.cpp b/stm32h7/STM32TestTask.cpp index 375c4ec..e55a5f1 100644 --- a/stm32h7/STM32TestTask.cpp +++ b/stm32h7/STM32TestTask.cpp @@ -5,6 +5,9 @@ STM32TestTask::STM32TestTask(object_id_t objectId, bool enablePrintout, bool blinkyLed): TestTask(objectId, enablePrintout), blinkyLed(blinkyLed) { + BSP_LED_Init(LED1); + BSP_LED_Init(LED2); + BSP_LED_Init(LED3); } ReturnValue_t STM32TestTask::performPeriodicAction() {