detect_step_by_acc_gyr.h 295 B

123456789101112131415
  1. #ifndef detect_step_by_acc_gyr_h
  2. #define detect_step_by_acc_gyr_h
  3. #include "hal_mt.h"
  4. #include "main.h"
  5. int detect_turning_point(float *data_buff, int length, int last_status);
  6. void step_detect_by_acc_gyr(float *acc, float *gyr, int *x_zero, int *y_zero, int *z_zero, int *zupt);
  7. #endif