CJ125 unit-tests coverage #617
This commit is contained in:
parent
3ba837fa97
commit
e28f2b0e3b
|
@ -625,7 +625,7 @@ void initEngineContoller(Logging *sharedLogger DECLARE_ENGINE_PARAMETER_SUFFIX)
|
||||||
/**
|
/**
|
||||||
* this uses SimplePwm which depends on scheduler, has to be initialized after scheduler
|
* this uses SimplePwm which depends on scheduler, has to be initialized after scheduler
|
||||||
*/
|
*/
|
||||||
initCJ125(sharedLogger);
|
initCJ125(sharedLogger PASS_ENGINE_PARAMETER_SUFFIX);
|
||||||
#endif /* EFI_CJ125 */
|
#endif /* EFI_CJ125 */
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -606,7 +606,7 @@ void cjPostState(TunerStudioOutputChannels *tsOutputChannels) {
|
||||||
}
|
}
|
||||||
#endif /* EFI_TUNER_STUDIO */
|
#endif /* EFI_TUNER_STUDIO */
|
||||||
|
|
||||||
void initCJ125(Logging *sharedLogger) {
|
void initCJ125(Logging *sharedLogger DECLARE_ENGINE_PARAMETER_SUFFIX) {
|
||||||
logger = sharedLogger;
|
logger = sharedLogger;
|
||||||
|
|
||||||
if (!boardConfiguration->isCJ125Enabled)
|
if (!boardConfiguration->isCJ125Enabled)
|
||||||
|
|
|
@ -174,7 +174,7 @@ typedef enum {
|
||||||
} cj125_sensor_type_e;
|
} cj125_sensor_type_e;
|
||||||
|
|
||||||
|
|
||||||
void initCJ125(Logging *shared);
|
void initCJ125(Logging *shared DECLARE_ENGINE_PARAMETER_SUFFIX);
|
||||||
#if EFI_TUNER_STUDIO || defined(__DOXYGEN__)
|
#if EFI_TUNER_STUDIO || defined(__DOXYGEN__)
|
||||||
void cjPostState(TunerStudioOutputChannels *tsOutputChannels);
|
void cjPostState(TunerStudioOutputChannels *tsOutputChannels);
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue