performing LED init as well

This commit is contained in:
Robin Müller 2021-07-16 12:44:35 +02:00
parent 27215b67aa
commit afe0a13566
No known key found for this signature in database
GPG Key ID: 71B58F8A3CDFA9AC

View File

@ -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() {