You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Kamil Ritz d6b6276cdc change naming from tiltOffset to pitchOffset 5 years ago
.github/workflows Github Actions: update firmware docker repo 5 years ago
EKF change naming from tiltOffset to pitchOffset 5 years ago
airdata Remove direct unsafe access to matrix internal data 6 years ago
docs doxygen cmake and Jenkins support 7 years ago
geo Fix flag for initialization 6 years ago
geo_lookup [ekf] controlMagFusion refactor and mag field strength check (#662) 5 years ago
l1 l1 position controller: make sure that a NAN roll setpoint 7 years ago
mathlib Expand auto-format coverage and tiny style changes 5 years ago
tecs TECS: remove height rate complementary filter 5 years ago
test change naming from tiltOffset to pitchOffset 5 years ago
tools Expand auto-format coverage and tiny style changes 5 years ago
validation validation: remove unused vibration metric 5 years ago
.clang-format Expand auto-format coverage and tiny style changes 5 years ago
.gitignore Add airspeed sensor to sensor_simulator 5 years ago
.travis.yml travis-ci basic build script 7 years ago
CMakeLists.txt delete attitude_fw (merged into PX4/Firmware) 5 years ago
CONTRIBUTING.md Update CONTRIBUTING.md 5 years ago
LICENSE Initial commit 9 years ago
Makefile Auto Formatting with clang-format-6.0 (#727) 5 years ago
README.md Update build instructions in readme 5 years ago
ecl.h remove unnecessary <cmath> include 5 years ago

README.md

ECL

Very lightweight Estimation & Control Library.

DOI Build Status

This library solves the estimation & control problems of a number of robots and drones. It accepts GPS, vision and inertial sensor inputs. It is extremely lightweight and efficient and yet has the rugged field-proven performance.

The library is BSD 3-clause licensed.

EKF Documentation

Building EKF

Prerequisites:

By following the steps mentioned below you can create a static library which can be included in projects:

make
// OR
mkdir build/
cd build/
cmake ..
make

Testing ECL

By following the steps you can run the unit tests

make test