algo_port.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. /*******************************************************************************
  2. * @file algo_port.h
  3. * @author MEMS Application Team
  4. * @version V1.0
  5. * @date 2020-08-12
  6. * @brief sensor testing module
  7. *******************************************************************************/
  8. #ifndef _ALGO_PORT_H
  9. #define _ALGO_PORT_H
  10. /******************************************************************************/
  11. //includes
  12. /******************************************************************************/
  13. #include <sensor_hal.h>
  14. #include <sensor_algo.h>
  15. /******************************************************************************/
  16. //constants
  17. /******************************************************************************/
  18. /******************************************************************************/
  19. //typedefs
  20. /******************************************************************************/
  21. /******************************************************************************/
  22. //functions
  23. /******************************************************************************/
  24. void algo_init(void);
  25. void algo_handler(int id, sensor_dat_t *dat);
  26. #endif /* _ALGO_PORT_H */