firmware-nucleo/App/Inc/task_leds.h (445B)
1 /* 2 * Copyright (c) 2026 Martin Javier Klöckner <mklockner@fi.uba.ar> 3 * 4 * See file `LICENSE` for full details 5 */ 6 7 #ifndef TASK_INC_TASK_LEDS_H_ 8 #define TASK_INC_TASK_LEDS_H_ 9 10 #ifdef __cplusplus 11 extern "C" { 12 #endif 13 14 extern uint32_t g_task_leds_cnt; 15 extern volatile uint32_t g_task_leds_tick_cnt; 16 17 void task_leds_init(void *parameters); 18 void task_leds_update(void *parameters); 19 20 #ifdef __cplusplus 21 } 22 #endif 23 24 #endif /* TASK_INC_TASK_LEDS_H_ */
