2016-05-19 19:03:18 -07:00
|
|
|
/*
|
|
|
|
* accelerometer.cpp
|
|
|
|
*
|
|
|
|
* @date May 19, 2016
|
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2016
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "main.h"
|
|
|
|
#include "lis302dl.h"
|
|
|
|
|
2016-05-23 17:02:39 -07:00
|
|
|
void initAccelerometer(DECLARE_ENGINE_PARAMETER_F) {
|
2016-05-19 19:03:18 -07:00
|
|
|
|
2016-05-23 17:02:39 -07:00
|
|
|
}
|
2016-05-19 19:03:18 -07:00
|
|
|
|
2016-05-23 17:02:39 -07:00
|
|
|
float getLongitudinalAcceleration(DECLARE_ENGINE_PARAMETER_F) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
float getTransverseAcceleration(DECLARE_ENGINE_PARAMETER_F) {
|
|
|
|
return 0;
|
|
|
|
}
|