rusefi-1/firmware/hw_layer/vehicle_speed.cpp

67 lines
1.7 KiB
C++
Raw Normal View History

2015-07-10 06:01:56 -07:00
/**
* @file vehicle_speed.cpp
*
* @date Dec 26, 2014
2015-12-31 13:02:30 -08:00
* @author Andrey Belomutskiy, (c) 2012-2016
2015-07-10 06:01:56 -07:00
*/
#include "vehicle_speed.h"
#if EFI_VEHICLE_SPEED || defined(__DOXYGEN__)
#include "engine.h"
#include "digital_input_hw.h"
#include "pin_repository.h"
EXTERN_ENGINE
;
static Logging *logger;
static efitick_t lastSignalTimeNt = 0;
static efitick_t vssDiff = 0;
static int vssCounter = 0;
/**
* @return vehicle speed, in kilometers per hour
*/
float getVehicleSpeed(void) {
efitick_t nowNt = getTimeNowNt();
if (nowNt - lastSignalTimeNt > US2NT(US_PER_SECOND_LL))
return 0; // previous signal time is too long ago - we are stopped
return engineConfiguration->vehicleSpeedCoef * US2NT(US_PER_SECOND_LL) / vssDiff;
}
static void vsAnaWidthCallback(void) {
vssCounter++;
efitick_t nowNt = getTimeNowNt();
vssDiff = nowNt - lastSignalTimeNt;
lastSignalTimeNt = nowNt;
}
static void speedInfo(void) {
2016-06-20 14:03:03 -07:00
scheduleMsg(logger, "VSS %s at %s", boolToString(engineConfiguration->hasVehicleSpeedSensor),
hwPortname(boardConfiguration->vehicleSpeedSensorInputPin));
scheduleMsg(logger, "c=%f eventCounter=%d speed=%f",
2015-07-10 06:01:56 -07:00
engineConfiguration->vehicleSpeedCoef,
vssCounter,
getVehicleSpeed());
scheduleMsg(logger, "vss diff %d", vssDiff);
}
void initVehicleSpeed(Logging *l) {
logger = l;
2016-06-20 14:03:03 -07:00
addConsoleAction("speedinfo", speedInfo);
2015-07-10 06:01:56 -07:00
if (boardConfiguration->vehicleSpeedSensorInputPin == GPIO_UNASSIGNED)
return;
digital_input_s* vehicleSpeedInput = initWaveAnalyzerDriver("VSS", boardConfiguration->vehicleSpeedSensorInputPin);
startInputDriver(vehicleSpeedInput, true);
vehicleSpeedInput->widthListeners.registerCallback((VoidInt) vsAnaWidthCallback, NULL);
}
#endif /* EFI_VEHICLE_SPEED */