only: tle9104 discovery test #6361

This commit is contained in:
rusefillc 2024-04-13 09:35:29 -04:00
parent fd5323c86f
commit cb7fd93cb9
4 changed files with 12 additions and 1 deletions

View File

@ -75,6 +75,13 @@ void setDiscoveryPdm() {
#ifdef HW_FRANKENSO
/**
* set engine_type 56
* https://github.com/rusefi/rusefi-hardware/tree/main/tle9104-breakout
*/
void setDiscoveryTLE9104Test() {
}
/**
* set engine_type 59
*/

View File

@ -13,6 +13,7 @@ void runSchedulingPrecisionTestIfNeeded(void);
void setDiscoveryPdm();
void setFrankensoBoardTestConfiguration();
void setDiscovery33810Test();
void setDiscoveryTLE9104Test();
void setEtbTestConfiguration();
void setL9779TestConfiguration();

View File

@ -937,6 +937,9 @@ void resetConfigurationExt(configuration_callback_t boardCallback, engine_type_e
case engine_type_e::FRANKENSO_TEST_33810:
setDiscovery33810Test();
break;
case engine_type_e::FRANKENSO_TEST_TLE9104:
setDiscoveryTLE9104Test();
break;
case engine_type_e::TEST_ENGINE:
setTestCamEngineConfiguration();
break;

View File

@ -136,7 +136,7 @@ enum class engine_type_e : uint16_t {
TEST_ISSUE_366_RISE = 53,
MAVERICK_X3 = 54,
ET_UNUSED_55 = 55,
ET_UNUSED_56 = 56,
FRANKENSO_TEST_TLE9104 = 56,
HELLEN_HONDA_BCM = 57,
ETB_BENCH_ENGINE = 58,
FRANKENSO_TEST_33810 = 59,