stm32f103rb_hal_ds18b20

Index Commits Files Refs README
app/inc/task_actuator_interface.h (523B)
   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_ACTUATOR_INTERFACE_H_
   9 #define TASK_INC_TASK_ACTUATOR_INTERFACE_H_
  10 
  11 #ifdef __cplusplus
  12 extern "C" {
  13 #endif
  14 
  15 extern void put_event_task_actuator(task_actuator_ev_t event, task_actuator_id_t identifier);
  16 
  17 #ifdef __cplusplus
  18 }
  19 #endif
  20 
  21 #endif /* TASK_INC_TASK_ACTUATOR_INTERFACE_H_ */