Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed Watchdog SDFileSystem DigoleSerialDisp
kalman.h
00001 #ifndef __KALMAN_H 00002 #define __KALMAN_H 00003 00004 /** Implementation of 1st order, 2-state Kalman Filter for heading estimation 00005 */ 00006 00007 float kfGetX(int i); 00008 void headingKalmanInit(float x0); 00009 float headingKalman(float dt, float Hgps, bool gps, float dHgyro, bool gyro); 00010 00011 #endif
Generated on Tue Jul 12 2022 21:36:18 by
1.7.2