app_task.h 261 B

12345678910111213141516
  1. #ifndef __APP_TASK_H
  2. #define __APP_TASK_H
  3. #include <stdint.h>
  4. extern const uint32_t task_ass[8][2];
  5. void task0 (void);
  6. void task1 (void);
  7. void task2 (void);
  8. void task3 (void);
  9. void task4 (void);
  10. void task5 (void);
  11. void task6 (void);
  12. void task7 (void);
  13. #endif