auto-sync
This commit is contained in:
parent
3d5cd50b44
commit
44df00ff83
|
@ -20,8 +20,6 @@ EXTERN_ENGINE
|
|||
;
|
||||
|
||||
void setBmwE34(DECLARE_ENGINE_PARAMETER_F) {
|
||||
board_configuration_s * boardConfiguration = &engineConfiguration->bc;
|
||||
|
||||
// chartsize 450
|
||||
engineConfiguration->engineChartSize = 450;
|
||||
|
||||
|
|
|
@ -70,8 +70,6 @@ static const ignition_table_t tps_advance_table = {
|
|||
EXTERN_ENGINE;
|
||||
|
||||
void setCitroenBerlingoTU3JPConfiguration(DECLARE_ENGINE_PARAMETER_F) {
|
||||
board_configuration_s *boardConfiguration = &engineConfiguration->bc;
|
||||
|
||||
engineConfiguration->engineType = CITROEN_TU3JP;
|
||||
|
||||
/**
|
||||
|
|
|
@ -16,7 +16,6 @@ EXTERN_ENGINE;
|
|||
void setCustomEngineConfiguration(DECLARE_ENGINE_PARAMETER_F) {
|
||||
engineConfiguration->trigger.type = TT_ONE_PLUS_ONE;
|
||||
|
||||
board_configuration_s * boardConfiguration = &engineConfiguration->bc;
|
||||
setFrankenso_01_LCD(boardConfiguration);
|
||||
setFrankenso0_1_joystick(engineConfiguration);
|
||||
|
||||
|
|
|
@ -93,8 +93,6 @@ static float dodge_map_advance_table[16][16] = {
|
|||
EXTERN_ENGINE;
|
||||
|
||||
void setDodgeNeon1995EngineConfiguration(DECLARE_ENGINE_PARAMETER_F) {
|
||||
board_configuration_s * boardConfiguration = &engineConfiguration->bc;
|
||||
|
||||
engineConfiguration->trigger.type = TT_DODGE_NEON_1995;
|
||||
|
||||
engineConfiguration->algorithm = LM_ALPHA_N;
|
||||
|
@ -187,7 +185,6 @@ void setDodgeNeon1995EngineConfiguration(DECLARE_ENGINE_PARAMETER_F) {
|
|||
}
|
||||
|
||||
void setDodgeNeonNGCEngineConfiguration(DECLARE_ENGINE_PARAMETER_F) {
|
||||
board_configuration_s * boardConfiguration = &engineConfiguration->bc;
|
||||
engineConfiguration->trigger.type = TT_DODGE_NEON_2003;
|
||||
setFrankenso_01_LCD(boardConfiguration);
|
||||
setFrankenso0_1_joystick(engineConfiguration);
|
||||
|
|
|
@ -17,7 +17,6 @@ EXTERN_ENGINE
|
|||
|
||||
void setDodgeRam1996(DECLARE_ENGINE_PARAMETER_F) {
|
||||
setCustomEngineConfiguration(PASS_ENGINE_PARAMETER_F);
|
||||
board_configuration_s * boardConfiguration = &engineConfiguration->bc;
|
||||
|
||||
setOperationMode(engineConfiguration, FOUR_STROKE_CAM_SENSOR);
|
||||
engineConfiguration->trigger.type = TT_DODGE_RAM;
|
||||
|
|
|
@ -26,7 +26,6 @@ EXTERN_ENGINE;
|
|||
* @brief Default values for persistent properties
|
||||
*/
|
||||
void setFordInline6(DECLARE_ENGINE_PARAMETER_F) {
|
||||
board_configuration_s *boardConfiguration = &engineConfiguration->bc;
|
||||
engineConfiguration->specs.cylindersCount = 6;
|
||||
|
||||
setOperationMode(engineConfiguration, FOUR_STROKE_CAM_SENSOR);
|
||||
|
|
|
@ -79,7 +79,6 @@ static void setDefaultAspireMaps(DECLARE_ENGINE_PARAMETER_F) {
|
|||
}
|
||||
|
||||
void setFordAspireEngineConfiguration(DECLARE_ENGINE_PARAMETER_F) {
|
||||
board_configuration_s * boardConfiguration = &engineConfiguration->bc;
|
||||
engineConfiguration->tpsMin = 100;
|
||||
engineConfiguration->tpsMax = 750;
|
||||
|
||||
|
|
|
@ -28,8 +28,6 @@ void setFrankenstein_01_LCD(board_configuration_s *boardConfiguration) {
|
|||
EXTERN_ENGINE;
|
||||
|
||||
void setRoverv8(DECLARE_ENGINE_PARAMETER_F) {
|
||||
board_configuration_s *boardConfiguration = &engineConfiguration->bc;
|
||||
|
||||
setOperationMode(engineConfiguration, FOUR_STROKE_CRANK_SENSOR);
|
||||
engineConfiguration->trigger.type = TT_TOOTHED_WHEEL_36_1;
|
||||
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
EXTERN_ENGINE;
|
||||
|
||||
void setSachs(DECLARE_ENGINE_PARAMETER_F) {
|
||||
board_configuration_s * boardConfiguration = &engineConfiguration->bc;
|
||||
engineConfiguration->specs.displacement = 0.1; // 100cc
|
||||
engineConfiguration->specs.cylindersCount = 1;
|
||||
engineConfiguration->engineCycle = 360;
|
||||
|
|
Loading…
Reference in New Issue