WBO
This commit is contained in:
parent
de5dec46cb
commit
725d2b816d
|
@ -2082,7 +2082,7 @@ typedef enum {
|
||||||
CUSTOM_ERR_TASK_TIMER_OVERFLOW = 6722,
|
CUSTOM_ERR_TASK_TIMER_OVERFLOW = 6722,
|
||||||
CUSTOM_NO_ETB_FOR_IDLE = 6723,
|
CUSTOM_NO_ETB_FOR_IDLE = 6723,
|
||||||
CUSTOM_ERR_6724 = 6724,
|
CUSTOM_ERR_6724 = 6724,
|
||||||
CUSTOM_ERR_6725 = 6725,
|
CUSTOM_ERR_CJ125_DIAG = 6725,
|
||||||
CUSTOM_ERR_VVT_OUT_OF_RANGE = 6726,
|
CUSTOM_ERR_VVT_OUT_OF_RANGE = 6726,
|
||||||
CUSTOM_ERR_6727 = 6727,
|
CUSTOM_ERR_6727 = 6727,
|
||||||
CUSTOM_ERR_6728 = 6728,
|
CUSTOM_ERR_6728 = 6728,
|
||||||
|
|
|
@ -76,6 +76,9 @@ void CJ125::printDiag() {
|
||||||
printDiagCode(logger, "UN", diag >> 2, LOW_VOLTAGE);
|
printDiagCode(logger, "UN", diag >> 2, LOW_VOLTAGE);
|
||||||
printDiagCode(logger, "IA", diag >> 4, LOW_VOLTAGE);
|
printDiagCode(logger, "IA", diag >> 4, LOW_VOLTAGE);
|
||||||
printDiagCode(logger, "HR", diag >> 6, "open load");
|
printDiagCode(logger, "HR", diag >> 6, "open load");
|
||||||
|
/* todo: do we want to throw CRITICAL on diag start-up error? probably not?
|
||||||
|
firmwareError(CUSTOM_ERR_CJ125_DIAG, "CJ125 is not well");
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,4 +2,8 @@
|
||||||
|
|
||||||
[iBom](https://rusefi.com/docs/ibom/O2_input_CJ125_latest.html)
|
[iBom](https://rusefi.com/docs/ibom/O2_input_CJ125_latest.html)
|
||||||
|
|
||||||
2019 status: known to work, but documentation is very limited :(
|
2019 status: known to work, but documentation is very limited :(
|
||||||
|
|
||||||
|
On this board UR and UA do NOT have build-in resistor dividers.
|
||||||
|
|
||||||
|
There is an opinion that for open air UA divider is required.
|
Loading…
Reference in New Issue