sensor_port.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. /*******************************************************************************
  2. * @file sensor_port.h
  3. * @author MEMS Application Team
  4. * @version V1.0
  5. * @date 2020-08-12
  6. * @brief sensor testing module
  7. *******************************************************************************/
  8. #ifndef _SENSOR_PORT_H
  9. #define _SENSOR_PORT_H
  10. /******************************************************************************/
  11. //includes
  12. /******************************************************************************/
  13. #include <sensor_hal.h>
  14. /******************************************************************************/
  15. //constants
  16. /******************************************************************************/
  17. /******************************************************************************/
  18. //variables
  19. /******************************************************************************/
  20. /******************************************************************************/
  21. //functions
  22. /******************************************************************************/
  23. int sensor_init(void);
  24. int sensor_poll(void);
  25. int sensor_get_data(sensor_dat_t *pdat);
  26. int sensor_data_is_empty(void);
  27. #endif /* _SENSOR_PORT_H */