this does not go as planned :(
This commit is contained in:
parent
efdaef81af
commit
938fbafd9e
|
@ -13,18 +13,18 @@ void initNewSensors(Logging* logger DECLARE_ENGINE_PARAMETER_SUFFIX) {
|
|||
initCanSensors();
|
||||
#endif
|
||||
|
||||
initTps(PASS_ENGINE_PARAMETER_SIGNATURE);
|
||||
initOilPressure(PASS_ENGINE_PARAMETER_SIGNATURE);
|
||||
initThermistors(PASS_ENGINE_PARAMETER_SIGNATURE);
|
||||
initTps(PASS_CONFIG_PARAMETER_SIGNATURE);
|
||||
initOilPressure(PASS_CONFIG_PARAMETER_SIGNATURE);
|
||||
initThermistors(PASS_CONFIG_PARAMETER_SIGNATURE);
|
||||
|
||||
// Init CLI functionality for sensors (mocking)
|
||||
initSensorCli(logger);
|
||||
}
|
||||
|
||||
void reconfigureSensors(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
||||
reconfigureTps(PASS_ENGINE_PARAMETER_SIGNATURE);
|
||||
reconfigureOilPressure(PASS_ENGINE_PARAMETER_SIGNATURE);
|
||||
reconfigureThermistors(PASS_ENGINE_PARAMETER_SIGNATURE);
|
||||
reconfigureTps(PASS_CONFIG_PARAMETER_SIGNATURE);
|
||||
reconfigureOilPressure(PASS_CONFIG_PARAMETER_SIGNATURE);
|
||||
reconfigureThermistors(PASS_CONFIG_PARAMETER_SIGNATURE);
|
||||
}
|
||||
|
||||
static Logging* s_logger;
|
||||
|
|
Loading…
Reference in New Issue