auto-sync
This commit is contained in:
parent
343896122a
commit
07578a0954
|
@ -216,8 +216,6 @@ static msg_t benchThread(int param) {
|
|||
#endif
|
||||
}
|
||||
|
||||
extern engine_configuration_s activeConfiguration;
|
||||
|
||||
static void unregister(brain_pin_e currentPin, OutputPin *output) {
|
||||
if (currentPin == GPIO_UNASSIGNED)
|
||||
return;
|
||||
|
|
|
@ -141,8 +141,6 @@ void turnOnTriggerInputPins(Logging *sharedLogger) {
|
|||
applyNewTriggerInputPins();
|
||||
}
|
||||
|
||||
extern engine_configuration_s activeConfiguration;
|
||||
|
||||
void stopTriggerInputPins(void) {
|
||||
for (int i = 0; i < TRIGGER_SUPPORTED_CHANNELS; i++) {
|
||||
if (boardConfiguration->triggerInputPins[i]
|
||||
|
|
|
@ -131,8 +131,6 @@ bool hasFirmwareErrorFlag = false;
|
|||
|
||||
static virtual_timer_t resetTimer;
|
||||
|
||||
extern engine_configuration_s activeConfiguration;
|
||||
|
||||
EXTERN_ENGINE
|
||||
;
|
||||
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
package com.rusefi.ui.storage;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
|
@ -82,6 +84,7 @@ public class Node {
|
|||
return value == null ? defaultValue : value;
|
||||
}
|
||||
|
||||
@NotNull
|
||||
public String getProperty(String key) {
|
||||
return getProperty(key, "");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue