system.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. #ifndef __system_h__
  2. #define __system_h__
  3. #include <stdbool.h>
  4. #include <stdint.h>
  5. #include <string.h>
  6. #include "sdk_common.h"
  7. #include "SEGGER_RTT.h"
  8. #include "usr_config.h"
  9. typedef void (*Sleep_cb)(uint32_t);
  10. typedef void (*PROCESS_cb)(void);
  11. typedef struct _PROCESS{ //进程结构体
  12. uint8_t holdon; //进程是否可进入低功耗模式
  13. uint32_t error; //进程错误代码
  14. uint16_t Peroid; //周期
  15. uint32_t tim; //时间搓
  16. PROCESS_cb cb; //进程函数
  17. struct _PROCESS *next; //单向链表
  18. #if ProcessTime_EN
  19. char name_t[20]; //线程名字
  20. uint32_t cnt1_rtc; //获取RTC的开始时间
  21. uint32_t cnt2_rtc; //获取RTC的结束时间
  22. #endif
  23. }PROCESS_t;
  24. int Sleep_Regist(Sleep_cb cb); //休眠之前的回调注册
  25. int Wakeup_Regist(Sleep_cb cb); //休眠醒来的回调注册
  26. void Sleep_Event(void);
  27. int Process_Start(uint32_t peroid,const char *name,PROCESS_cb cb); //app进程开始
  28. void Process_Stop(PROCESS_cb cb); //app进程停止
  29. void Process_SetHoldOn(PROCESS_cb cb,uint8_t holdon); //app进程是否可进入低功耗模式
  30. void Process_SetError(PROCESS_cb cb,uint8_t error); //app进程错误代码
  31. void Process_UpdatePeroid(PROCESS_cb cb,uint16_t Peroid);
  32. uint16_t Process_GetPeroid(PROCESS_cb cb);
  33. #endif