Initial upload
This commit is contained in:
190
examples/AHRS/AHRS.cpp
Normal file
190
examples/AHRS/AHRS.cpp
Normal file
@@ -0,0 +1,190 @@
|
||||
/*
|
||||
This code is provided under the BSD license.
|
||||
Copyright (c) 2014, Emlid Limited. All rights reserved.
|
||||
Written by Igor Vereninov and Mikhail Avkhimenia
|
||||
twitter.com/emlidtech || www.emlid.com || info@emlid.com
|
||||
|
||||
Application: Mahory AHRS algorithm supplied with data from MPU9250.
|
||||
Outputs roll, pitch and yaw in the console and sends quaternion
|
||||
over the network - it can be used with 3D IMU visualizer located in
|
||||
Navio/Applications/3D IMU visualizer.
|
||||
|
||||
To run this app navigate to the directory containing it and run following commands:
|
||||
make
|
||||
sudo ./AHRS
|
||||
|
||||
If you want to visualize IMU data on another machine pass it's address and port
|
||||
sudo ./AHRS ipaddress portnumber
|
||||
|
||||
To achieve stable loop you need to run this application with a high priority
|
||||
on a linux kernel with real-time patch. Raspbian distribution with real-time
|
||||
kernel is available at emlid.com and priority can be set with chrt command:
|
||||
chrt -f -p 99 PID
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <sys/socket.h>
|
||||
#include <netinet/in.h>
|
||||
#include <arpa/inet.h>
|
||||
#include <stdint.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/time.h>
|
||||
#include "Navio/MPU9250.h"
|
||||
#include "AHRS.hpp"
|
||||
#include "Navio/Util.h"
|
||||
|
||||
#define G_SI 9.80665
|
||||
#define PI 3.14159
|
||||
|
||||
// Objects
|
||||
|
||||
MPU9250 imu; // MPU9250
|
||||
AHRS ahrs; // Mahony AHRS
|
||||
|
||||
// Sensor data
|
||||
|
||||
float ax, ay, az;
|
||||
float gx, gy, gz;
|
||||
float mx, my, mz;
|
||||
|
||||
// Orientation data
|
||||
|
||||
float roll, pitch, yaw;
|
||||
|
||||
// Timing data
|
||||
|
||||
float offset[3];
|
||||
struct timeval tv;
|
||||
float dt, maxdt;
|
||||
float mindt = 0.01;
|
||||
unsigned long previoustime, currenttime;
|
||||
float dtsumm = 0;
|
||||
int isFirst = 1;
|
||||
|
||||
// Network data
|
||||
|
||||
int sockfd;
|
||||
struct sockaddr_in servaddr = {0};
|
||||
char sendline[80];
|
||||
|
||||
//============================= Initial setup =================================
|
||||
|
||||
void imuSetup()
|
||||
{
|
||||
//----------------------- MPU initialization ------------------------------
|
||||
|
||||
imu.initialize();
|
||||
|
||||
//-------------------------------------------------------------------------
|
||||
|
||||
printf("Beginning Gyro calibration...\n");
|
||||
for(int i = 0; i<100; i++)
|
||||
{
|
||||
imu.getMotion6(&ax, &ay, &az, &gx, &gy, &gz);
|
||||
gx *= 180 / PI;
|
||||
gy *= 180 / PI;
|
||||
gz *= 180 / PI;
|
||||
offset[0] += (-gx*0.0175);
|
||||
offset[1] += (-gy*0.0175);
|
||||
offset[2] += (-gz*0.0175);
|
||||
usleep(10000);
|
||||
}
|
||||
offset[0]/=100.0;
|
||||
offset[1]/=100.0;
|
||||
offset[2]/=100.0;
|
||||
|
||||
printf("Offsets are: %f %f %f\n", offset[0], offset[1], offset[2]);
|
||||
ahrs.setGyroOffset(offset[0], offset[1], offset[2]);
|
||||
}
|
||||
|
||||
//============================== Main loop ====================================
|
||||
|
||||
void imuLoop()
|
||||
{
|
||||
//----------------------- Calculate delta time ----------------------------
|
||||
|
||||
gettimeofday(&tv,NULL);
|
||||
previoustime = currenttime;
|
||||
currenttime = 1000000 * tv.tv_sec + tv.tv_usec;
|
||||
dt = (currenttime - previoustime) / 1000000.0;
|
||||
if(dt < 1/1300.0) usleep((1/1300.0-dt)*1000000);
|
||||
gettimeofday(&tv,NULL);
|
||||
currenttime = 1000000 * tv.tv_sec + tv.tv_usec;
|
||||
dt = (currenttime - previoustime) / 1000000.0;
|
||||
|
||||
//-------- Read raw measurements from the MPU and update AHRS --------------
|
||||
|
||||
// Accel + gyro.
|
||||
imu.getMotion6(&ax, &ay, &az, &gx, &gy, &gz);
|
||||
ax /= G_SI;
|
||||
ay /= G_SI;
|
||||
az /= G_SI;
|
||||
gx *= 180 / PI;
|
||||
gy *= 180 / PI;
|
||||
gz *= 180 / PI;
|
||||
ahrs.updateIMU(ax, ay, az, gx*0.0175, gy*0.0175, gz*0.0175, dt);
|
||||
|
||||
// Accel + gyro + mag.
|
||||
// Soft and hard iron calibration required for proper function.
|
||||
/*
|
||||
imu.getMotion9(&ax, &ay, &az, &gx, &gy, &gz, &mx, &my, &mz);
|
||||
ahrs.update(ax, ay, az, gx*0.0175, gy*0.0175, gz*0.0175, my, mx, -mz, dt);
|
||||
*/
|
||||
|
||||
//------------------------ Read Euler angles ------------------------------
|
||||
|
||||
ahrs.getEuler(&roll, &pitch, &yaw);
|
||||
|
||||
//------------------- Discard the time of the first cycle -----------------
|
||||
|
||||
if (!isFirst)
|
||||
{
|
||||
if (dt > maxdt) maxdt = dt;
|
||||
if (dt < mindt) mindt = dt;
|
||||
}
|
||||
isFirst = 0;
|
||||
|
||||
//------------- Console and network output with a lowered rate ------------
|
||||
|
||||
dtsumm += dt;
|
||||
if(dtsumm > 0.05)
|
||||
{
|
||||
// Console output
|
||||
printf("ROLL: %+05.2f PITCH: %+05.2f YAW: %+05.2f PERIOD %.4fs RATE %dHz \n", roll, pitch, yaw * -1, dt, int(1/dt));
|
||||
|
||||
// Network output
|
||||
sprintf(sendline,"%10f %10f %10f %10f %dHz\n", ahrs.getW(), ahrs.getX(), ahrs.getY(), ahrs.getZ(), int(1/dt));
|
||||
sendto(sockfd, sendline, strlen(sendline), 0, (struct sockaddr *)&servaddr, sizeof(servaddr));
|
||||
|
||||
dtsumm = 0;
|
||||
}
|
||||
}
|
||||
|
||||
//=============================================================================
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
if (check_apm()) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
//--------------------------- Network setup -------------------------------
|
||||
|
||||
sockfd = socket(AF_INET,SOCK_DGRAM,0);
|
||||
servaddr.sin_family = AF_INET;
|
||||
|
||||
if (argc == 3) {
|
||||
servaddr.sin_addr.s_addr = inet_addr(argv[1]);
|
||||
servaddr.sin_port = htons(atoi(argv[2]));
|
||||
} else {
|
||||
servaddr.sin_addr.s_addr = inet_addr("127.0.0.1");
|
||||
servaddr.sin_port = htons(7000);
|
||||
}
|
||||
|
||||
//-------------------- IMU setup and main loop ----------------------------
|
||||
|
||||
imuSetup();
|
||||
|
||||
while(1)
|
||||
imuLoop();
|
||||
}
|
||||
243
examples/AHRS/AHRS.hpp
Normal file
243
examples/AHRS/AHRS.hpp
Normal file
@@ -0,0 +1,243 @@
|
||||
/*
|
||||
Mahony AHRS algorithm implemented by Madgwick
|
||||
See: http://www.x-io.co.uk/node/8#open_source_ahrs_and_imu_algorithms
|
||||
|
||||
Adapted by Igor Vereninov (igor.vereninov@emlid.com)
|
||||
Provided to you by Emlid Ltd (c) 2014.
|
||||
twitter.com/emlidtech || www.emlid.com || info@emlid.com
|
||||
*/
|
||||
|
||||
#ifndef AHRS_HPP
|
||||
#define AHRS_HPP
|
||||
|
||||
#include <cmath>
|
||||
#include <stdio.h>
|
||||
|
||||
class AHRS{
|
||||
private:
|
||||
float q0, q1, q2, q3;
|
||||
float gyroOffset[3];
|
||||
float twoKi;
|
||||
float twoKp;
|
||||
float integralFBx, integralFBy, integralFBz;
|
||||
public:
|
||||
AHRS(float q0 = 1, float q1 = 0, float q2 = 0, float q3 = 0)
|
||||
: q0(q0), q1(q1), q2(q2), q3(q3), twoKi(0), twoKp(2) {;}
|
||||
|
||||
void update(float ax, float ay, float az, float gx, float gy, float gz, float mx, float my, float mz, float dt)
|
||||
{
|
||||
float recipNorm;
|
||||
float q0q0, q0q1, q0q2, q0q3, q1q1, q1q2, q1q3, q2q2, q2q3, q3q3;
|
||||
float hx, hy, bx, bz;
|
||||
float halfvx, halfvy, halfvz, halfwx, halfwy, halfwz;
|
||||
float halfex, halfey, halfez;
|
||||
float qa, qb, qc;
|
||||
|
||||
// Use IMU algorithm if magnetometer measurement invalid (avoids NaN in magnetometer normalisation)
|
||||
if((mx == 0.0f) && (my == 0.0f) && (mz == 0.0f)) {
|
||||
updateIMU(gx, gy, gz, ax, ay, az, dt);
|
||||
return;
|
||||
}
|
||||
|
||||
// Compute feedback only if accelerometer measurement valid (avoids NaN in accelerometer normalisation)
|
||||
if(!((ax == 0.0f) && (ay == 0.0f) && (az == 0.0f))) {
|
||||
|
||||
// Normalise accelerometer measurement
|
||||
recipNorm = invSqrt(ax * ax + ay * ay + az * az);
|
||||
ax *= recipNorm;
|
||||
ay *= recipNorm;
|
||||
az *= recipNorm;
|
||||
|
||||
// Normalise magnetometer measurement
|
||||
recipNorm = invSqrt(mx * mx + my * my + mz * mz);
|
||||
mx *= recipNorm;
|
||||
my *= recipNorm;
|
||||
mz *= recipNorm;
|
||||
|
||||
// Auxiliary variables to avoid repeated arithmetic
|
||||
q0q0 = q0 * q0;
|
||||
q0q1 = q0 * q1;
|
||||
q0q2 = q0 * q2;
|
||||
q0q3 = q0 * q3;
|
||||
q1q1 = q1 * q1;
|
||||
q1q2 = q1 * q2;
|
||||
q1q3 = q1 * q3;
|
||||
q2q2 = q2 * q2;
|
||||
q2q3 = q2 * q3;
|
||||
q3q3 = q3 * q3;
|
||||
|
||||
// Reference direction of Earth's magnetic field
|
||||
hx = 2.0f * (mx * (0.5f - q2q2 - q3q3) + my * (q1q2 - q0q3) + mz * (q1q3 + q0q2));
|
||||
hy = 2.0f * (mx * (q1q2 + q0q3) + my * (0.5f - q1q1 - q3q3) + mz * (q2q3 - q0q1));
|
||||
bx = sqrt(hx * hx + hy * hy);
|
||||
bz = 2.0f * (mx * (q1q3 - q0q2) + my * (q2q3 + q0q1) + mz * (0.5f - q1q1 - q2q2));
|
||||
|
||||
// Estimated direction of gravity and magnetic field
|
||||
halfvx = q1q3 - q0q2;
|
||||
halfvy = q0q1 + q2q3;
|
||||
halfvz = q0q0 - 0.5f + q3q3;
|
||||
halfwx = bx * (0.5f - q2q2 - q3q3) + bz * (q1q3 - q0q2);
|
||||
halfwy = bx * (q1q2 - q0q3) + bz * (q0q1 + q2q3);
|
||||
halfwz = bx * (q0q2 + q1q3) + bz * (0.5f - q1q1 - q2q2);
|
||||
|
||||
// Error is sum of cross product between estimated direction and measured direction of field vectors
|
||||
halfex = (ay * halfvz - az * halfvy) + (my * halfwz - mz * halfwy);
|
||||
halfey = (az * halfvx - ax * halfvz) + (mz * halfwx - mx * halfwz);
|
||||
halfez = (ax * halfvy - ay * halfvx) + (mx * halfwy - my * halfwx);
|
||||
|
||||
// Compute and apply integral feedback if enabled
|
||||
if(twoKi > 0.0f) {
|
||||
integralFBx += twoKi * halfex * dt; // integral error scaled by Ki
|
||||
integralFBy += twoKi * halfey * dt;
|
||||
integralFBz += twoKi * halfez * dt;
|
||||
gx += integralFBx; // apply integral feedback
|
||||
gy += integralFBy;
|
||||
gz += integralFBz;
|
||||
}
|
||||
else {
|
||||
integralFBx = 0.0f; // prevent integral windup
|
||||
integralFBy = 0.0f;
|
||||
integralFBz = 0.0f;
|
||||
}
|
||||
|
||||
// Apply proportional feedback
|
||||
gx += twoKp * halfex;
|
||||
gy += twoKp * halfey;
|
||||
gz += twoKp * halfez;
|
||||
}
|
||||
|
||||
// Integrate rate of change of quaternion
|
||||
gx *= (0.5f * dt); // pre-multiply common factors
|
||||
gy *= (0.5f * dt);
|
||||
gz *= (0.5f * dt);
|
||||
qa = q0;
|
||||
qb = q1;
|
||||
qc = q2;
|
||||
q0 += (-qb * gx - qc * gy - q3 * gz);
|
||||
q1 += (qa * gx + qc * gz - q3 * gy);
|
||||
q2 += (qa * gy - qb * gz + q3 * gx);
|
||||
q3 += (qa * gz + qb * gy - qc * gx);
|
||||
|
||||
// Normalise quaternion
|
||||
recipNorm = invSqrt(q0 * q0 + q1 * q1 + q2 * q2 + q3 * q3);
|
||||
q0 *= recipNorm;
|
||||
q1 *= recipNorm;
|
||||
q2 *= recipNorm;
|
||||
q3 *= recipNorm;
|
||||
}
|
||||
|
||||
void updateIMU(float ax, float ay, float az, float gx, float gy, float gz, float dt)
|
||||
{
|
||||
float recipNorm;
|
||||
float halfvx, halfvy, halfvz;
|
||||
float halfex, halfey, halfez;
|
||||
float qa, qb, qc;
|
||||
|
||||
gx -= gyroOffset[0];
|
||||
gy -= gyroOffset[1];
|
||||
gz -= gyroOffset[2];
|
||||
|
||||
// Compute feedback only if accelerometer measurement valid (avoids NaN in accelerometer normalisation)
|
||||
if(!((ax == 0.0f) && (ay == 0.0f) && (az == 0.0f))) {
|
||||
|
||||
// Normalise accelerometer measurement
|
||||
recipNorm = invSqrt(ax * ax + ay * ay + az * az);
|
||||
ax *= recipNorm;
|
||||
ay *= recipNorm;
|
||||
az *= recipNorm;
|
||||
|
||||
// Estimated direction of gravity and vector perpendicular to magnetic flux
|
||||
halfvx = q1 * q3 - q0 * q2;
|
||||
halfvy = q0 * q1 + q2 * q3;
|
||||
halfvz = q0 * q0 - 0.5f + q3 * q3;
|
||||
|
||||
// Error is sum of cross product between estimated and measured direction of gravity
|
||||
halfex = (ay * halfvz - az * halfvy);
|
||||
halfey = (az * halfvx - ax * halfvz);
|
||||
halfez = (ax * halfvy - ay * halfvx);
|
||||
|
||||
// Compute and apply integral feedback if enabled
|
||||
if(twoKi > 0.0f) {
|
||||
integralFBx += twoKi * halfex * dt; // integral error scaled by Ki
|
||||
integralFBy += twoKi * halfey * dt;
|
||||
integralFBz += twoKi * halfez * dt;
|
||||
gx += integralFBx; // apply integral feedback
|
||||
gy += integralFBy;
|
||||
gz += integralFBz;
|
||||
}
|
||||
else {
|
||||
integralFBx = 0.0f; // prevent integral windup
|
||||
integralFBy = 0.0f;
|
||||
integralFBz = 0.0f;
|
||||
}
|
||||
|
||||
// Apply proportional feedback
|
||||
gx += twoKp * halfex;
|
||||
gy += twoKp * halfey;
|
||||
gz += twoKp * halfez;
|
||||
}
|
||||
|
||||
// Integrate rate of change of quaternion
|
||||
gx *= (0.5f * dt); // pre-multiply common factors
|
||||
gy *= (0.5f * dt);
|
||||
gz *= (0.5f * dt);
|
||||
qa = q0;
|
||||
qb = q1;
|
||||
qc = q2;
|
||||
q0 += (-qb * gx - qc * gy - q3 * gz);
|
||||
q1 += (qa * gx + qc * gz - q3 * gy);
|
||||
q2 += (qa * gy - qb * gz + q3 * gx);
|
||||
q3 += (qa * gz + qb * gy - qc * gx);
|
||||
|
||||
// Normalise quaternion
|
||||
recipNorm = invSqrt(q0 * q0 + q1 * q1 + q2 * q2 + q3 * q3);
|
||||
q0 *= recipNorm;
|
||||
q1 *= recipNorm;
|
||||
q2 *= recipNorm;
|
||||
q3 *= recipNorm;
|
||||
}
|
||||
|
||||
void setGyroOffset(float offsetX, float offsetY, float offsetZ)
|
||||
{
|
||||
gyroOffset[0] = offsetX;
|
||||
gyroOffset[1] = offsetY;
|
||||
gyroOffset[2] = offsetZ;
|
||||
}
|
||||
|
||||
void getEuler(float* roll, float* pitch, float* yaw)
|
||||
{
|
||||
*roll = atan2(2*(q0*q1+q2*q3), 1-2*(q1*q1+q2*q2)) * 180.0/M_PI;
|
||||
*pitch = asin(2*(q0*q2-q3*q1)) * 180.0/M_PI;
|
||||
*yaw = atan2(2*(q0*q3+q1*q2), 1-2*(q2*q2+q3*q3)) * 180.0/M_PI;
|
||||
}
|
||||
|
||||
float invSqrt(float x)
|
||||
{
|
||||
float halfx = 0.5f * x;
|
||||
float y = x;
|
||||
long i = *(long*)&y;
|
||||
i = 0x5f3759df - (i>>1);
|
||||
y = *(float*)&i;
|
||||
y = y * (1.5f - (halfx * y * y));
|
||||
return y;
|
||||
}
|
||||
float getW()
|
||||
{
|
||||
return q0;
|
||||
}
|
||||
float getX()
|
||||
{
|
||||
return q1;
|
||||
}
|
||||
float getY()
|
||||
{
|
||||
return q2;
|
||||
}
|
||||
float getZ()
|
||||
{
|
||||
return q3;
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
#endif // AHRS_hpp
|
||||
9
examples/AHRS/Makefile
Normal file
9
examples/AHRS/Makefile
Normal file
@@ -0,0 +1,9 @@
|
||||
CC = g++
|
||||
NAVIO = ../../Navio
|
||||
INCLUDES = -I ../..
|
||||
|
||||
all:
|
||||
$(CC) $(INCLUDES) AHRS.cpp $(NAVIO)/MPU9250.cpp $(NAVIO)/Util.cpp -o AHRS -lrt -lpthread
|
||||
|
||||
clean:
|
||||
rm AHRS
|
||||
Reference in New Issue
Block a user