1234567891011121314151617181920212223242526272829303132333435 |
- /*******************************************************************************
- * @file sensor_port.h
- * @author MEMS Application Team
- * @version V1.0
- * @date 2020-08-12
- * @brief sensor testing module
- *******************************************************************************/
- #ifndef _SENSOR_PORT_H
- #define _SENSOR_PORT_H
- /******************************************************************************/
- //includes
- /******************************************************************************/
- #include <sensor_hal.h>
- /******************************************************************************/
- //constants
- /******************************************************************************/
- /******************************************************************************/
- //variables
- /******************************************************************************/
- /******************************************************************************/
- //functions
- /******************************************************************************/
- int sensor_init(void);
- int sensor_poll(void);
- int sensor_get_data(sensor_dat_t *pdat);
- int sensor_data_is_empty(void);
- #endif /* _SENSOR_PORT_H */
|