dead code

This commit is contained in:
Matthew Kennedy 2025-01-08 18:35:46 -08:00 committed by rusefillc
parent 32a4b1db98
commit 218e786aa4
3 changed files with 0 additions and 10 deletions

View File

@ -198,10 +198,6 @@ void setEtbTestConfiguration() {
// no analog dividers - all sensors with 3v supply, naked discovery bench setup
engineConfiguration->analogInputDividerCoefficient = 1;
// EFI_ADC_15 = PC5
engineConfiguration->clt.adcChannel = EFI_ADC_15;
set10K_4050K(&engineConfiguration->clt, 10000);
// see also setDefaultEtbBiasCurve
}

View File

@ -45,8 +45,3 @@ void setCommonNTCSensor(ThermistorConf *thermistorConf, float pullup) {
void setGmCltSensor(ThermistorConf *thermistorConf, float pullup) {
thermistorConf->config = {-40, 40, 130, 100'000, 1459, 70, pullup};
}
void set10K_4050K(ThermistorConf *thermistorConf, float pullup) {
// see https://www.taydaelectronics.com/datasheets/A-409.pdf
thermistorConf->config = {-30, 25, 130, 108000, 10000, 225, pullup};
}

View File

@ -23,5 +23,4 @@ void setAtSensor(ThermistorConf *thermistorConf,
void setCommonNTCSensor(ThermistorConf *thermistorConf, float pullup);
void setGmCltSensor(ThermistorConf *thermistorConf, float pullup);
void setDodgeSensor(ThermistorConf *thermistorConf, float pullup);
void set10K_4050K(ThermistorConf *thermistorConf, float pullup);