firmware-nucleo/App/Inc/task_temp_ctrl.h (480B)
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_TEMP_CTRL_H_ 8 #define TASK_INC_TASK_TEMP_CTRL_H_ 9 10 #ifdef __cplusplus 11 extern "C" { 12 #endif 13 14 extern uint32_t g_task_temp_ctrl_cnt; 15 extern volatile uint32_t g_task_temp_ctrl_tick_cnt; 16 17 void task_temp_ctrl_init(void *parameters); 18 void task_temp_ctrl_update(void *parameters); 19 20 #ifdef __cplusplus 21 } 22 #endif 23 24 #endif /* TASK_INC_TASK_TEMP_CTRL_H_ */
