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 Eurobot_2012_Primary
Kalman/Kalman.h
- Committer:
- narshu
- Date:
- 2012-04-20
- Revision:
- 1:bbabbd997d21
- Parent:
- 0:f3bf6c7e2283
File content as of revision 1:bbabbd997d21:
#include "rtos.h"
//#include "Matrix.h"
#include "motors.h"
#include "RFSRF05.h"
#include <tvmet/Matrix.h>
#include <tvmet/Vector.h>
using namespace tvmet;
class Kalman {
public:
enum measurement_t {SONAR1 = 0, SONAR2, SONAR3, IR1, IR2, IR3};
static const measurement_t maxmeasure = IR3;
Kalman(Motors &motorsin);
void predict();
void runupdate(measurement_t type, float value, float variance);
//State variables
Vector<float, 3> X;
Matrix<float, 3, 3> P;
Mutex statelock;
float SonarMeasures[3];
float IRMeasures[3];
private:
//Matrix<float, 3, 3> Q; //perhaps calculate on the fly? dependant on speed etc?
RFSRF05 sonararray;
Motors& motors;
Thread predictthread;
void predictloop();
static void predictloopwrapper(void const *argument){ ((Kalman*)argument)->predictloop(); }
RtosTimer predictticker;
// Thread sonarthread;
// void sonarloop();
// static void sonarloopwrapper(void const *argument){ ((Kalman*)argument)->sonarloop(); }
// RtosTimer sonarticker;
struct measurmentdata{
measurement_t mtype;
float value;
float variance;
} ;
Mail <measurmentdata, 16> measureMQ;
Thread updatethread;
void updateloop();
static void updateloopwrapper(void const *argument){ ((Kalman*)argument)->updateloop(); }
};