tdse-tf_3-02

Controlador PID para derretidor de miel con control local via botones y remoto via WiFi
Index Commits Files Refs Submodules README
firmware-nucleo/App/Inc/task_system.h (544B)
   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_SYSTEM_H_
   9 #define TASK_INC_TASK_SYSTEM_H_
  10 
  11 #ifdef __cplusplus
  12 extern "C" {
  13 #endif
  14 
  15 extern volatile uint32_t g_task_system_tick_cnt;
  16 
  17 extern void task_system_init(void *parameters);
  18 extern void task_system_update(void *parameters);
  19 
  20 #ifdef __cplusplus
  21 }
  22 #endif
  23 
  24 #endif /* TASK_INC_TASK_SYSTEM_H_ */