MPU6050 FreeIMU library

Dependents:   FreeIMU FreeIMU_external_magnetometer

Fork of MPU6050_tmp by Aloïs Wolff

Async MPU6050 library

My port of the MPU6050 library samples the chip at 500Hz using Timer. Async I2C is achieved using a custom I2C library, which supports I2C calls from interrupts. Link given below:

Import libraryMODI2C

Improvements to Olieman's MODI2C library. Supports calls from IRQ.

Difference between this port and the Arduino MPU6050 library

The getMotion6 function only returns a copy of the last obtained readings, which is sampled at a frequency of 500Hz (adjustable). Hence it can be called at any frequency without taxing the I2C.

Revision:
4:ba1cf80aeef0
Parent:
0:662207e34fba
Child:
5:bdb6ad020352
--- a/MPU6050.cpp	Wed Feb 20 17:32:50 2013 +0000
+++ b/MPU6050.cpp	Wed Feb 20 18:27:43 2013 +0000
@@ -78,6 +78,7 @@
 void MPU6050::initialize()
 {
 
+    debugSerial.baud(921600); //uses max serial speed
 #ifdef useDebugSerial
     debugSerial.printf("MPU6050::initialize start\n");
 #endif