GeekIMU/2.Firmware/STM32/Firmware/sensor/ahrs.h

9 lines
203 B
C
Raw Permalink Normal View History

2024-11-09 21:39:20 +08:00
#ifndef _AHRS_H_
#define _AHRS_H_
float invSqrt(float x);
void AHRSupdate(float gx, float gy, float gz, float ax, float ay, float az, float mx, float my, float mz, char useMag,char UseTimer);
#endif