93 lines
2.2 KiB
C++
93 lines
2.2 KiB
C++
/**
|
|
* @file vehicle_speed.cpp
|
|
*
|
|
* @date Dec 26, 2014
|
|
* @author Andrey Belomutskiy, (c) 2012-2018
|
|
*/
|
|
|
|
#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;
|
|
|
|
#define DEFAULT_MOCK_SPEED -1
|
|
static float mockVehicleSpeed = DEFAULT_MOCK_SPEED; // in kilometers per hour
|
|
|
|
void setMockVehicleSpeed(float speedKPH) {
|
|
mockVehicleSpeed = speedKPH;
|
|
}
|
|
|
|
/**
|
|
* @return vehicle speed, in kilometers per hour
|
|
*/
|
|
float getVehicleSpeed(void) {
|
|
if (mockVehicleSpeed != DEFAULT_MOCK_SPEED)
|
|
return mockVehicleSpeed;
|
|
if (!hasVehicleSpeedSensor())
|
|
return 0;
|
|
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) {
|
|
engine->engineState.vssEventCounter++;
|
|
efitick_t nowNt = getTimeNowNt();
|
|
vssDiff = nowNt - lastSignalTimeNt;
|
|
lastSignalTimeNt = nowNt;
|
|
}
|
|
|
|
static void speedInfo(void) {
|
|
scheduleMsg(logger, "VSS input at %s",
|
|
hwPortname(CONFIGB(vehicleSpeedSensorInputPin)));
|
|
|
|
scheduleMsg(logger, "c=%.2f eventCounter=%d speed=%.2f",
|
|
engineConfiguration->vehicleSpeedCoef,
|
|
engine->engineState.vssEventCounter,
|
|
getVehicleSpeed());
|
|
scheduleMsg(logger, "vss diff %d", vssDiff);
|
|
|
|
}
|
|
|
|
bool hasVehicleSpeedSensor() {
|
|
return CONFIGB(vehicleSpeedSensorInputPin) != GPIO_UNASSIGNED;
|
|
}
|
|
|
|
void stopVSSPins(void) {
|
|
removeWaveAnalyzerDriver("VSS", activeConfiguration.bc.vehicleSpeedSensorInputPin);
|
|
}
|
|
|
|
void startVSSPins(void) {
|
|
if (!hasVehicleSpeedSensor())
|
|
return;
|
|
digital_input_s* vehicleSpeedInput = addWaveAnalyzerDriver("VSS", CONFIGB(vehicleSpeedSensorInputPin));
|
|
startInputDriver(vehicleSpeedInput, true);
|
|
vehicleSpeedInput->widthListeners.registerCallback((VoidInt) vsAnaWidthCallback, NULL);
|
|
}
|
|
|
|
void initVehicleSpeed(Logging *l) {
|
|
logger = l;
|
|
addConsoleAction("speedinfo", speedInfo);
|
|
startVSSPins();
|
|
}
|
|
#else /* EFI_VEHICLE_SPEED */
|
|
|
|
float getVehicleSpeed(void) {
|
|
// no VSS support
|
|
return 0;
|
|
}
|
|
#endif /* EFI_VEHICLE_SPEED */
|