├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── bin └── bb-mpu9150_git-r0_armv7a-vfp-neon.ipk ├── package.xml └── src ├── accelcal.txt ├── linux-mpu9150 ├── LICENSE ├── Makefile-cross ├── Makefile-native ├── README.md ├── eMPL │ ├── README.md │ ├── dmpKey.h │ ├── dmpmap.h │ ├── inv_mpu.c │ ├── inv_mpu.h │ ├── inv_mpu_dmp_motion_driver.c │ └── inv_mpu_dmp_motion_driver.h ├── glue │ ├── linux_glue.c │ └── linux_glue.h ├── imu.c ├── imucal.c ├── local_defaults.h └── mpu9150 │ ├── mpu9150.c │ ├── mpu9150.h │ ├── quaternion.c │ ├── quaternion.h │ ├── vector3d.c │ └── vector3d.h ├── magcal.txt ├── mpu9150_node.cpp └── random.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | cscope.out 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmayoral/bb_mpu9150/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmayoral/bb_mpu9150/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmayoral/bb_mpu9150/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmayoral/bb_mpu9150/HEAD/README.md -------------------------------------------------------------------------------- /bin/bb-mpu9150_git-r0_armv7a-vfp-neon.ipk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmayoral/bb_mpu9150/HEAD/bin/bb-mpu9150_git-r0_armv7a-vfp-neon.ipk -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmayoral/bb_mpu9150/HEAD/package.xml -------------------------------------------------------------------------------- /src/accelcal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmayoral/bb_mpu9150/HEAD/src/accelcal.txt -------------------------------------------------------------------------------- /src/linux-mpu9150/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmayoral/bb_mpu9150/HEAD/src/linux-mpu9150/LICENSE -------------------------------------------------------------------------------- /src/linux-mpu9150/Makefile-cross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmayoral/bb_mpu9150/HEAD/src/linux-mpu9150/Makefile-cross -------------------------------------------------------------------------------- /src/linux-mpu9150/Makefile-native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmayoral/bb_mpu9150/HEAD/src/linux-mpu9150/Makefile-native -------------------------------------------------------------------------------- /src/linux-mpu9150/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmayoral/bb_mpu9150/HEAD/src/linux-mpu9150/README.md -------------------------------------------------------------------------------- /src/linux-mpu9150/eMPL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmayoral/bb_mpu9150/HEAD/src/linux-mpu9150/eMPL/README.md -------------------------------------------------------------------------------- /src/linux-mpu9150/eMPL/dmpKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmayoral/bb_mpu9150/HEAD/src/linux-mpu9150/eMPL/dmpKey.h -------------------------------------------------------------------------------- /src/linux-mpu9150/eMPL/dmpmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmayoral/bb_mpu9150/HEAD/src/linux-mpu9150/eMPL/dmpmap.h -------------------------------------------------------------------------------- /src/linux-mpu9150/eMPL/inv_mpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmayoral/bb_mpu9150/HEAD/src/linux-mpu9150/eMPL/inv_mpu.c -------------------------------------------------------------------------------- /src/linux-mpu9150/eMPL/inv_mpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmayoral/bb_mpu9150/HEAD/src/linux-mpu9150/eMPL/inv_mpu.h -------------------------------------------------------------------------------- /src/linux-mpu9150/eMPL/inv_mpu_dmp_motion_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmayoral/bb_mpu9150/HEAD/src/linux-mpu9150/eMPL/inv_mpu_dmp_motion_driver.c -------------------------------------------------------------------------------- /src/linux-mpu9150/eMPL/inv_mpu_dmp_motion_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmayoral/bb_mpu9150/HEAD/src/linux-mpu9150/eMPL/inv_mpu_dmp_motion_driver.h -------------------------------------------------------------------------------- /src/linux-mpu9150/glue/linux_glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmayoral/bb_mpu9150/HEAD/src/linux-mpu9150/glue/linux_glue.c -------------------------------------------------------------------------------- /src/linux-mpu9150/glue/linux_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmayoral/bb_mpu9150/HEAD/src/linux-mpu9150/glue/linux_glue.h -------------------------------------------------------------------------------- /src/linux-mpu9150/imu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmayoral/bb_mpu9150/HEAD/src/linux-mpu9150/imu.c -------------------------------------------------------------------------------- /src/linux-mpu9150/imucal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmayoral/bb_mpu9150/HEAD/src/linux-mpu9150/imucal.c -------------------------------------------------------------------------------- /src/linux-mpu9150/local_defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmayoral/bb_mpu9150/HEAD/src/linux-mpu9150/local_defaults.h -------------------------------------------------------------------------------- /src/linux-mpu9150/mpu9150/mpu9150.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmayoral/bb_mpu9150/HEAD/src/linux-mpu9150/mpu9150/mpu9150.c -------------------------------------------------------------------------------- /src/linux-mpu9150/mpu9150/mpu9150.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmayoral/bb_mpu9150/HEAD/src/linux-mpu9150/mpu9150/mpu9150.h -------------------------------------------------------------------------------- /src/linux-mpu9150/mpu9150/quaternion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmayoral/bb_mpu9150/HEAD/src/linux-mpu9150/mpu9150/quaternion.c -------------------------------------------------------------------------------- /src/linux-mpu9150/mpu9150/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmayoral/bb_mpu9150/HEAD/src/linux-mpu9150/mpu9150/quaternion.h -------------------------------------------------------------------------------- /src/linux-mpu9150/mpu9150/vector3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmayoral/bb_mpu9150/HEAD/src/linux-mpu9150/mpu9150/vector3d.c -------------------------------------------------------------------------------- /src/linux-mpu9150/mpu9150/vector3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmayoral/bb_mpu9150/HEAD/src/linux-mpu9150/mpu9150/vector3d.h -------------------------------------------------------------------------------- /src/magcal.txt: -------------------------------------------------------------------------------- 1 | -177 2 | 95 3 | -149 4 | 193 5 | -220 6 | 124 7 | -------------------------------------------------------------------------------- /src/mpu9150_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmayoral/bb_mpu9150/HEAD/src/mpu9150_node.cpp -------------------------------------------------------------------------------- /src/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmayoral/bb_mpu9150/HEAD/src/random.cpp --------------------------------------------------------------------------------