2021-07-25 22:05:17 -07:00
|
|
|
#include "pch.h"
|
|
|
|
|
2020-10-23 04:31:47 -07:00
|
|
|
#include "init.h"
|
|
|
|
#include "adc_subscription.h"
|
|
|
|
#include "functional_sensor.h"
|
2020-10-23 12:46:16 -07:00
|
|
|
#include "proxy_sensor.h"
|
2020-10-23 04:31:47 -07:00
|
|
|
#include "linear_func.h"
|
|
|
|
|
|
|
|
static LinearFunc oilpSensorFunc;
|
|
|
|
static FunctionalSensor oilpSensor(SensorType::OilPressure, /* timeout = */ MS2NT(50));
|
|
|
|
|
|
|
|
static LinearFunc fuelPressureFuncLow;
|
|
|
|
static FunctionalSensor fuelPressureSensorLow(SensorType::FuelPressureLow, /* timeout = */ MS2NT(50));
|
|
|
|
|
|
|
|
static LinearFunc fuelPressureFuncHigh;
|
|
|
|
static FunctionalSensor fuelPressureSensorHigh(SensorType::FuelPressureHigh, /* timeout = */ MS2NT(50));
|
|
|
|
|
2020-10-23 12:46:16 -07:00
|
|
|
static ProxySensor injectorPressure(SensorType::FuelPressureInjector);
|
|
|
|
|
2020-10-27 21:07:34 -07:00
|
|
|
/**
|
|
|
|
* @param bandwidth Hertz, used by low pass filter in to analog subscribers
|
|
|
|
*/
|
2020-10-23 04:31:47 -07:00
|
|
|
static void initFluidPressure(LinearFunc& func, FunctionalSensor& sensor, const linear_sensor_s& cfg, float bandwidth) {
|
|
|
|
auto channel = cfg.hwChannel;
|
|
|
|
|
|
|
|
// Only register if we have a sensor
|
2021-01-05 13:02:20 -08:00
|
|
|
if (!isAdcChannelValid(channel)) {
|
2020-10-23 04:31:47 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-09-30 16:58:01 -07:00
|
|
|
float val1 = cfg.value1;
|
|
|
|
float val2 = cfg.value2;
|
|
|
|
|
|
|
|
// Limit to max given pressure - val1 or val2 could be larger
|
|
|
|
// (sensor may be backwards, high voltage = low pressure)
|
|
|
|
float greaterOutput = val1 > val2 ? val1 : val2;
|
|
|
|
|
|
|
|
// Allow slightly negative output (-5kpa) so as to not fail the sensor when engine is off
|
|
|
|
func.configure(cfg.v1, val1, cfg.v2, val2, /*minOutput*/ -5, greaterOutput);
|
|
|
|
|
2020-10-23 04:31:47 -07:00
|
|
|
sensor.setFunction(func);
|
|
|
|
|
|
|
|
AdcSubscription::SubscribeSensor(sensor, channel, bandwidth);
|
|
|
|
|
2020-12-06 12:00:30 -08:00
|
|
|
sensor.Register();
|
2020-10-23 04:31:47 -07:00
|
|
|
}
|
|
|
|
|
2021-11-16 01:15:29 -08:00
|
|
|
void initOilPressure() {
|
2020-10-23 04:31:47 -07:00
|
|
|
initFluidPressure(oilpSensorFunc, oilpSensor, CONFIG(oilPressure), 10);
|
|
|
|
initFluidPressure(fuelPressureFuncLow, fuelPressureSensorLow, CONFIG(lowPressureFuel), 10);
|
|
|
|
initFluidPressure(fuelPressureFuncHigh, fuelPressureSensorHigh, CONFIG(highPressureFuel), 100);
|
2020-10-23 12:46:16 -07:00
|
|
|
|
|
|
|
injectorPressure.setProxiedSensor(
|
|
|
|
CONFIG(injectorPressureType) == IPT_High
|
|
|
|
? SensorType::FuelPressureHigh
|
|
|
|
: SensorType::FuelPressureLow
|
|
|
|
);
|
|
|
|
|
2020-12-06 12:00:30 -08:00
|
|
|
injectorPressure.Register();
|
2020-10-23 04:31:47 -07:00
|
|
|
}
|
|
|
|
|
2021-09-30 16:58:01 -07:00
|
|
|
void deinitOilPressure() {
|
|
|
|
AdcSubscription::UnsubscribeSensor(oilpSensor);
|
|
|
|
AdcSubscription::UnsubscribeSensor(fuelPressureSensorLow);
|
|
|
|
AdcSubscription::UnsubscribeSensor(fuelPressureSensorHigh);
|
2020-10-23 04:31:47 -07:00
|
|
|
}
|