unit test for start/stop hardware and pin repository #1811
This commit is contained in:
parent
eef4e800b5
commit
2d771018e8
|
@ -1181,7 +1181,9 @@ void resetConfigurationExt(Logging * logger, configuration_callback_t boardCallb
|
|||
// set initial pin groups
|
||||
setDefaultBasePins(PASS_CONFIG_PARAMETER_SIGNATURE);
|
||||
|
||||
boardCallback(engineConfiguration);
|
||||
if (boardCallback != nullptr) {
|
||||
boardCallback(engineConfiguration);
|
||||
}
|
||||
|
||||
#if EFI_PROD_CODE
|
||||
// call overrided board-specific configuration setup, if needed (for custom boards only)
|
||||
|
|
|
@ -12,6 +12,6 @@ TEST(hardware, reinit) {
|
|||
ButtonDebounce::startConfigurationList();
|
||||
|
||||
|
||||
// resetConfigurationExt(nullptr, nullptr, ROVER_V8 PASS_ENGINE_PARAMETER_SUFFIX);
|
||||
// resetConfigurationExt(nullptr, nullptr, MIATA_NA6_MAP PASS_ENGINE_PARAMETER_SUFFIX);
|
||||
resetConfigurationExt(nullptr, nullptr, ROVER_V8 PASS_ENGINE_PARAMETER_SUFFIX);
|
||||
resetConfigurationExt(nullptr, nullptr, MIATA_NA6_MAP PASS_ENGINE_PARAMETER_SUFFIX);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue