Skip to content
Snippets Groups Projects
Commit 3f756b1b authored by dawehr's avatar dawehr
Browse files

Adjusted IMU biases to match recorded data

parent 4beda577
No related branches found
No related tags found
No related merge requests found
......@@ -89,13 +89,13 @@
// Sensitivity gain is based off MPU9150 datasheet (pg. 11)
#define GYRO_SENS 16.4
#define GYRO_X_BIAS 0.005f
#define GYRO_Y_BIAS -0.014f
#define GYRO_Z_BIAS 0.045f
#define GYRO_X_BIAS 0.0085f
#define GYRO_Y_BIAS -0.0063f
#define GYRO_Z_BIAS 0.0475f
#define ACCEL_X_BIAS 0.023f
#define ACCEL_Y_BIAS 0.009f
#define ACCEL_Z_BIAS 0.087f
#define ACCEL_X_BIAS 0.044f
#define ACCEL_Y_BIAS -0.0045f
#define ACCEL_Z_BIAS -0.008f
// Initialize hardware; Call this FIRST before calling any other functions
int initI2C0();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment