docs & defaults
This commit is contained in:
parent
614003570b
commit
d9ecb9784b
|
@ -370,8 +370,8 @@ static void cjInitPid(void) {
|
||||||
// engineConfiguration->cj125CsPinMode = OM_OPENDRAIN;
|
// engineConfiguration->cj125CsPinMode = OM_OPENDRAIN;
|
||||||
|
|
||||||
void cj125defaultPinout() {
|
void cj125defaultPinout() {
|
||||||
engineConfiguration->cj125ua = EFI_ADC_9;
|
engineConfiguration->cj125ua = EFI_ADC_13; // PC3
|
||||||
engineConfiguration->cj125ur = EFI_ADC_12;
|
engineConfiguration->cj125ur = EFI_ADC_4; // PA4
|
||||||
boardConfiguration->wboHeaterPin = GPIOC_13;
|
boardConfiguration->wboHeaterPin = GPIOC_13;
|
||||||
|
|
||||||
boardConfiguration->isCJ125Enabled = false;
|
boardConfiguration->isCJ125Enabled = false;
|
||||||
|
@ -455,11 +455,6 @@ static msg_t cjThread(void)
|
||||||
cjSetMode(lambda > 1.0f ? CJ125_MODE_NORMAL_17 : CJ125_MODE_NORMAL_8);
|
cjSetMode(lambda > 1.0f ? CJ125_MODE_NORMAL_17 : CJ125_MODE_NORMAL_8);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if 0
|
|
||||||
// Update console output variables
|
|
||||||
cjPostState(&tsOutputChannels);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
switch (state) {
|
switch (state) {
|
||||||
case CJ125_PREHEAT:
|
case CJ125_PREHEAT:
|
||||||
// use constant-speed startup heat-up
|
// use constant-speed startup heat-up
|
||||||
|
@ -570,6 +565,7 @@ bool cjHasAfrSensor(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// used by DBG_CJ125
|
||||||
void cjPostState(TunerStudioOutputChannels *tsOutputChannels) {
|
void cjPostState(TunerStudioOutputChannels *tsOutputChannels) {
|
||||||
tsOutputChannels->debugFloatField1 = heaterDuty;
|
tsOutputChannels->debugFloatField1 = heaterDuty;
|
||||||
tsOutputChannels->debugFloatField2 = heaterPid.getIntegration();
|
tsOutputChannels->debugFloatField2 = heaterPid.getIntegration();
|
||||||
|
|
Loading…
Reference in New Issue