firmware-nucleo/App/Inc/task_temp_sensor.h (462B)
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 DS18B20_H_ 8 #define DS18B20_H_ 9 10 #ifdef __cplusplus 11 extern "C" { 12 #endif 13 14 #include "ds18b20.h" 15 16 extern uint32_t g_task_temp_sensor_cnt; 17 extern volatile uint32_t g_task_temp_sensor_tick_cnt; 18 19 void task_temp_sensor_init(void *parameters); 20 void task_temp_sensor_update(void *parameters); 21 22 #ifdef __cplusplus 23 } 24 #endif 25 26 #endif /* DS18B20_H_ */
