system.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 uint8_t (*Sleep_Duration_Control_cb)(void);
  10. typedef void (*Sleep_cb)(uint32_t);
  11. typedef void (*PROCESS_cb)(void);
  12. typedef struct _PROCESS{ //进程结构体
  13. uint8_t holdon; //进程是否可进入低功耗模式
  14. uint16_t Peroid; //进程周期
  15. uint32_t tim; //进程时间搓
  16. PROCESS_cb cb; //进程函数
  17. uint8_t enable; //进程运行标志位
  18. #if ProcessTime_EN
  19. const char *name; //进程
  20. uint32_t useTime; //进程消耗的时间
  21. #endif
  22. }PROCESS_t;
  23. #if DEBUGLOG_ENABLE
  24. #define DEBUG_LOG(format,...) SEGGER_RTT_printf(0,format, ##__VA_ARGS__);
  25. #else
  26. #define DEBUG_LOG(format,...)
  27. #endif
  28. int Sleep_Regist(Sleep_cb cb); //休眠之前的回调注册
  29. int Wakeup_Regist(Sleep_cb cb); //休眠醒来的回调注册
  30. void Sleep_Event(void);
  31. int Process_Start(uint16_t peroid,const char *name,PROCESS_cb cb); //app进程开始
  32. void Process_Stop(PROCESS_cb cb); //app进程停止
  33. void Process_SetHoldOn(PROCESS_cb cb,uint8_t holdon); //app进程是否可进入低功耗模式
  34. void Process_UpdatePeroid(PROCESS_cb cb,uint16_t Peroid);
  35. uint16_t Process_GetPeroid(PROCESS_cb cb);
  36. void Sleep_Duration_Control_Regist(Sleep_Duration_Control_cb cb);//休眠周期控制回调注册
  37. #endif