├── Info.plist ├── Makefile ├── checkempty.png ├── checkemptygray.png ├── checkgreen.png ├── cp_windows.sh ├── fusion.c ├── gui.cpp ├── gui.h ├── icon.icns ├── icon.ico ├── imuread.c ├── imuread.h ├── magcal.c ├── mahony.c ├── matrix.c ├── png2c.pl ├── portlist.cpp ├── quality.c ├── rawdata.c ├── resource.rc ├── serialdata.c └── visualize.c /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/MotionCal/HEAD/Info.plist -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/MotionCal/HEAD/Makefile -------------------------------------------------------------------------------- /checkempty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/MotionCal/HEAD/checkempty.png -------------------------------------------------------------------------------- /checkemptygray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/MotionCal/HEAD/checkemptygray.png -------------------------------------------------------------------------------- /checkgreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/MotionCal/HEAD/checkgreen.png -------------------------------------------------------------------------------- /cp_windows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/MotionCal/HEAD/cp_windows.sh -------------------------------------------------------------------------------- /fusion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/MotionCal/HEAD/fusion.c -------------------------------------------------------------------------------- /gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/MotionCal/HEAD/gui.cpp -------------------------------------------------------------------------------- /gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/MotionCal/HEAD/gui.h -------------------------------------------------------------------------------- /icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/MotionCal/HEAD/icon.icns -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/MotionCal/HEAD/icon.ico -------------------------------------------------------------------------------- /imuread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/MotionCal/HEAD/imuread.c -------------------------------------------------------------------------------- /imuread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/MotionCal/HEAD/imuread.h -------------------------------------------------------------------------------- /magcal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/MotionCal/HEAD/magcal.c -------------------------------------------------------------------------------- /mahony.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/MotionCal/HEAD/mahony.c -------------------------------------------------------------------------------- /matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/MotionCal/HEAD/matrix.c -------------------------------------------------------------------------------- /png2c.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/MotionCal/HEAD/png2c.pl -------------------------------------------------------------------------------- /portlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/MotionCal/HEAD/portlist.cpp -------------------------------------------------------------------------------- /quality.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/MotionCal/HEAD/quality.c -------------------------------------------------------------------------------- /rawdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/MotionCal/HEAD/rawdata.c -------------------------------------------------------------------------------- /resource.rc: -------------------------------------------------------------------------------- 1 | MotionCal ICON "icon.ico" 2 | #include "wx/msw/wx.rc" 3 | -------------------------------------------------------------------------------- /serialdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/MotionCal/HEAD/serialdata.c -------------------------------------------------------------------------------- /visualize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/MotionCal/HEAD/visualize.c --------------------------------------------------------------------------------