sensor_sleep.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. /*******************************************************************************
  2. * @file sensor_sleep.h
  3. * @author MEMS Application Team
  4. * @version V1.0
  5. * @date 2020-08-12
  6. * @brief sensor testing module
  7. *******************************************************************************/
  8. #ifndef _SENSOR_SLEEP_H
  9. #define _SENSOR_SLEEP_H
  10. /******************************************************************************/
  11. //includes
  12. /******************************************************************************/
  13. /******************************************************************************/
  14. //constants
  15. /******************************************************************************/
  16. /******************************************************************************/
  17. //typedefs
  18. /******************************************************************************/
  19. /******************************************************************************/
  20. //functions
  21. /******************************************************************************/
  22. int sensor_sleep_init(void);
  23. int sensor_sleep_suspend(void);
  24. int sensor_sleep_resume(void);
  25. void sensor_sleep_wakeup(int wakeup);
  26. #endif /* _SENSOR_SLEEP_H */