only:bench test 33810 module #5745
This commit is contained in:
parent
c7f622a082
commit
e304483ec3
|
@ -70,6 +70,12 @@ void runSchedulingPrecisionTestIfNeeded(void) {
|
||||||
void setDiscoveryPdm() {
|
void setDiscoveryPdm() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if HW_FRANKENSO
|
||||||
|
void setDiscovery33810Test() {
|
||||||
|
}
|
||||||
|
#endif // HW_FRANKENSO
|
||||||
|
|
||||||
|
|
||||||
// todo: should this be part of more default configurations?
|
// todo: should this be part of more default configurations?
|
||||||
void setFrankensoConfiguration() {
|
void setFrankensoConfiguration() {
|
||||||
#if HW_FRANKENSO
|
#if HW_FRANKENSO
|
||||||
|
|
|
@ -12,6 +12,7 @@ void setFrankensoConfiguration();
|
||||||
void runSchedulingPrecisionTestIfNeeded(void);
|
void runSchedulingPrecisionTestIfNeeded(void);
|
||||||
void setDiscoveryPdm();
|
void setDiscoveryPdm();
|
||||||
void setFrankensoBoardTestConfiguration();
|
void setFrankensoBoardTestConfiguration();
|
||||||
|
void setDiscovery33810Test();
|
||||||
void setEtbTestConfiguration();
|
void setEtbTestConfiguration();
|
||||||
void setL9779TestConfiguration();
|
void setL9779TestConfiguration();
|
||||||
|
|
||||||
|
|
|
@ -914,6 +914,9 @@ void resetConfigurationExt(configuration_callback_t boardCallback, engine_type_e
|
||||||
case engine_type_e::DEFAULT_FRANKENSO:
|
case engine_type_e::DEFAULT_FRANKENSO:
|
||||||
setFrankensoConfiguration();
|
setFrankensoConfiguration();
|
||||||
break;
|
break;
|
||||||
|
case engine_type_e::FRANKENSO_TEST_33810:
|
||||||
|
setDiscovery33810Test();
|
||||||
|
break;
|
||||||
case engine_type_e::DISCOVERY_PDM:
|
case engine_type_e::DISCOVERY_PDM:
|
||||||
case engine_type_e::TEST_ENGINE:
|
case engine_type_e::TEST_ENGINE:
|
||||||
setTestCamEngineConfiguration();
|
setTestCamEngineConfiguration();
|
||||||
|
|
|
@ -148,7 +148,7 @@ enum class engine_type_e : uint16_t {
|
||||||
|
|
||||||
ETB_BENCH_ENGINE = 58,
|
ETB_BENCH_ENGINE = 58,
|
||||||
|
|
||||||
UNUSED_59 = 59,
|
FRANKENSO_TEST_33810 = 59,
|
||||||
|
|
||||||
L9779_BENCH_ENGINE = 60,
|
L9779_BENCH_ENGINE = 60,
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue