schedule.h 189 B

1234567891011121314
  1. #ifndef __SCHEDULE_H
  2. #define __SCHEDULE_H
  3. #include <stdint.h>
  4. #define TASK_PERIOD (1)
  5. void schedule(void);
  6. void schedule_init(uint32_t task_period);
  7. void schedule_clock(void);
  8. #endif