PX4 Autopilot Software
Go to file
kamilritz 92ba618f57 Improve on flash memory usage 2020-01-02 19:26:57 +11:00
EKF Improve on flash memory usage 2020-01-02 19:26:57 +11:00
airdata Remove direct unsafe access to matrix internal data 2019-09-18 08:42:58 +02:00
attitude_fw rate controller: add override specifiers whenever needed 2019-10-22 09:12:19 -04:00
docs
geo Fix flag for initialization 2019-07-22 10:24:51 +02:00
geo_lookup [ekf] controlMagFusion refactor and mag field strength check (#662) 2019-11-08 16:02:59 +01:00
l1 l1 position controller: make sure that a NAN roll setpoint 2018-08-21 16:16:33 +02:00
mathlib mathlib delete floorf in favor of math.h 2019-05-28 19:42:59 +10:00
tecs
test Add orientation initialization tests 2019-12-18 09:46:32 +01:00
validation remove unnecessary <cmath> include 2019-11-22 11:16:51 -05:00
.gitignore gitignore update for in tree cmake builds 2019-12-31 11:18:53 -05:00
.travis.yml
CMakeLists.txt Improve on flash memory usage 2020-01-02 19:26:57 +11:00
CONTRIBUTING.md
Jenkinsfile Jenkins: update container tags; use px4-dev-base-bionic 2019-11-03 10:29:15 -05:00
LICENSE
Makefile Remove swig and python test related things 2019-10-28 11:04:38 +01:00
README.md Make covariance matrices of type matrix::SquareMatrix 2020-01-02 19:26:57 +11:00
ecl.h remove unnecessary <cmath> include 2019-11-22 11:16:51 -05:00

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 shared library which can be included in projects using -l flag of gcc:

mkdir build/
cd build/
cmake ..
make

Alternatively, just run:

./build.sh

Testing ECL

By following the steps you can run the in test/ specified checks

make test  // run from main folder