12345678910111213141516171819202122232425262728293031323334 |
- /*******************************************************************************
- * @file sensor_sleep.h
- * @author MEMS Application Team
- * @version V1.0
- * @date 2020-08-12
- * @brief sensor testing module
- *******************************************************************************/
- #ifndef _SENSOR_SLEEP_H
- #define _SENSOR_SLEEP_H
- /******************************************************************************/
- //includes
- /******************************************************************************/
- /******************************************************************************/
- //constants
- /******************************************************************************/
- /******************************************************************************/
- //typedefs
- /******************************************************************************/
- /******************************************************************************/
- //functions
- /******************************************************************************/
- int sensor_sleep_init(void);
- int sensor_sleep_suspend(void);
- int sensor_sleep_resume(void);
- void sensor_sleep_wakeup(int wakeup);
- #endif /* _SENSOR_SLEEP_H */
|