auto-sync
This commit is contained in:
parent
ead519a39a
commit
2087946a21
|
@ -82,6 +82,9 @@ void setBmwE34(DECLARE_ENGINE_PARAMETER_F) {
|
|||
engineConfiguration->vbattDividerCoeff = 5.33;
|
||||
engineConfiguration->vbattAdcChannel = EFI_ADC_15; // PC5
|
||||
|
||||
engineConfiguration->tpsAdcChannel = EFI_ADC_3;
|
||||
|
||||
|
||||
boardConfiguration->triggerInputPins[0] = GPIOA_5;
|
||||
boardConfiguration->triggerInputPins[1] = GPIO_UNASSIGNED;
|
||||
|
||||
|
|
|
@ -174,8 +174,9 @@ static void rememberCurrentConfiguration(void) {
|
|||
memcpy(&activeConfiguration, engineConfiguration, sizeof(engine_configuration_s));
|
||||
}
|
||||
|
||||
void applyNewConfiguration() {
|
||||
void applyNewConfiguration(void) {
|
||||
applyNewHardwareSettings();
|
||||
rememberCurrentConfiguration();
|
||||
}
|
||||
|
||||
void runRusEfi(void) {
|
||||
|
|
|
@ -9,5 +9,6 @@
|
|||
#define RUSEFI_H_
|
||||
|
||||
void runRusEfi(void);
|
||||
void applyNewConfiguration(void);
|
||||
|
||||
#endif /* RUSEFI_H_ */
|
||||
|
|
Loading…
Reference in New Issue