36a9ccc3a8
Working read from mpu6050 - fixed makefile issues Succesfull yaw pitch roll reads Linter fixes - still erroring on mixed case Added inertial lib Fixed makefile to use inertial lib Kconfig fix
22 lines
512 B
Plaintext
22 lines
512 B
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
config LIB_MADGWICK
|
|
bool "Madgwick Fusion Algorithm"
|
|
default n
|
|
depends on ALLOW_MIT_COMPONENTS
|
|
---help---
|
|
Enable madgwick fusion algorithm.
|
|
Madgwick is a quick fusion algorithm use integrate
|
|
accelerometer, gyroscope and magnotomer (compass).
|
|
|
|
if LIB_MADGWICK
|
|
|
|
config LIB_MADGWICK_VER
|
|
string "Lib Madgwick version"
|
|
default "1.2.1"
|
|
|
|
endif # LIB_MADGWICK
|