12345678910111213141516171819202122232425262728293031323334 |
- /*******************************************************************************
- * @file algo_port.h
- * @author MEMS Application Team
- * @version V1.0
- * @date 2020-08-12
- * @brief sensor testing module
- *******************************************************************************/
- #ifndef _ALGO_PORT_H
- #define _ALGO_PORT_H
- /******************************************************************************/
- //includes
- /******************************************************************************/
- #include <sensor_hal.h>
- #include <sensor_algo.h>
- /******************************************************************************/
- //constants
- /******************************************************************************/
- /******************************************************************************/
- //typedefs
- /******************************************************************************/
- /******************************************************************************/
- //functions
- /******************************************************************************/
- void algo_init(void);
- void algo_handler(int id, sensor_dat_t *dat);
- #endif /* _ALGO_PORT_H */
|