firmware-nucleo/App/Inc/task_leds_interface.h (488B)
1 /* 2 * Copyright (c) 2023 Juan Manuel Cruz <jcruz@fi.uba.ar> <jcruz@frba.utn.edu.ar>. 3 * Copyright (c) 2026 Martin Javier Klöckner <mklockner@fi.uba.ar> 4 * 5 * See file `LICENSE` for full details 6 */ 7 8 #ifndef TASK_INC_TASK_LEDS_INTERFACE_H_ 9 #define TASK_INC_TASK_LEDS_INTERFACE_H_ 10 11 #ifdef __cplusplus 12 extern "C" { 13 #endif 14 15 extern void task_leds_interface_put_event(task_leds_ev_t event, task_leds_id_t identifier); 16 17 #ifdef __cplusplus 18 } 19 #endif 20 21 #endif /* TASK_INC_TASK_LEDS_INTERFACE_H_ */
