host_shoes.h 472 B

12345678910111213141516171819202122
  1. #ifndef __host_shoes_h__
  2. #define __host_shoes_h__
  3. #include "main.h"
  4. #include "press_down_detect.h"
  5. #include "footPDR.h"
  6. #include "send_data.h"
  7. #include "special_motion.h"
  8. #define GYR_LSB 16.4f
  9. #define ACC_LSB 2048.0f
  10. void host_shoes(int time_stamp, float gyr[3], float acc[3], float mag[3], uint16_t h_press, uint16_t s_press,
  11. int32_t h_pos[3], int16_t h_att[3], int32_t s_pos[3], int16_t s_att[3], int16_t h_zupt, int16_t s_zupt,uint16_t s_rssi);
  12. #endif