firmware-nucleo/App/Inc/task_buzzer.h (459B)
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_BUZZER_H_ 8 #define TASK_INC_TASK_BUZZER_H_ 9 10 #ifdef __cplusplus 11 extern "C" { 12 #endif 13 14 extern uint32_t g_task_buzzer_cnt; 15 extern volatile uint32_t g_task_buzzer_tick_cnt; 16 17 void task_buzzer_init(void *parameters); 18 void task_buzzer_update(void *parameters); 19 20 #ifdef __cplusplus 21 } 22 #endif 23 24 #endif /* TASK_INC_TASK_BUZZER_H_ */
