docs
This commit is contained in:
parent
30dd7bc04d
commit
c0deef0a5e
|
@ -32,6 +32,9 @@ void setTableBin(float array[], int size, float from, float to) {
|
|||
setTableBin2(array, size, from, to, 0.01);
|
||||
}
|
||||
|
||||
/**
|
||||
* initialize RPM table axis using default RPM range
|
||||
*/
|
||||
void setRpmTableBin(float array[], int size) {
|
||||
setRpmBin(array, size, 800, 7000);
|
||||
}
|
||||
|
|
|
@ -680,7 +680,7 @@ void initEngineContoller(Logging *sharedLogger DECLARE_ENGINE_PARAMETER_SUFFIX)
|
|||
addConsoleAction("knockinfo", getKnockInfo);
|
||||
}
|
||||
|
||||
#if EFI_PROD_CODE
|
||||
#if EFI_PROD_CODE || defined(__DOXYGEN__)
|
||||
addConsoleAction("reset_accel", resetAccel);
|
||||
#endif /* EFI_PROD_CODE */
|
||||
|
||||
|
|
|
@ -576,6 +576,7 @@ void setFlatInjectorLag(float value DECLARE_ENGINE_PARAMETER_SUFFIX) {
|
|||
setArrayValues(engineConfiguration->injector.battLagCorr, VBAT_INJECTOR_CURVE_SIZE, value);
|
||||
}
|
||||
|
||||
// todo: make this a macro
|
||||
void assertEngineReference(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
||||
efiAssertVoid(engine != NULL, "engine is NULL");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue