sonderbefehle
This commit is contained in:
@ -42,6 +42,8 @@ public class Controller_Frontend {
|
||||
|
||||
private static double executionTimeMultiplier = 1;
|
||||
|
||||
|
||||
|
||||
public static double getExecutionTimeMultiplier(){
|
||||
return executionTimeMultiplier;
|
||||
}
|
||||
@ -72,6 +74,9 @@ public class Controller_Frontend {
|
||||
@FXML
|
||||
private Label pclLabel;
|
||||
|
||||
@FXML
|
||||
private Label PrescalerLabel;
|
||||
|
||||
@FXML
|
||||
private Label statusLabel;
|
||||
|
||||
@ -101,6 +106,8 @@ public class Controller_Frontend {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
private static volatile boolean isAutoRunActive = false;
|
||||
private static volatile boolean isSleeping = false;
|
||||
|
||||
@ -409,10 +416,13 @@ public class Controller_Frontend {
|
||||
|
||||
@FXML
|
||||
public void toggleWatchdog(ActionEvent actionEvent) {
|
||||
if (wdtCheck.isSelected())
|
||||
if (wdtCheck.isSelected()){
|
||||
WatchdogTimer.enable();
|
||||
else
|
||||
|
||||
}
|
||||
else{
|
||||
WatchdogTimer.disable();
|
||||
}
|
||||
}
|
||||
|
||||
@FXML
|
||||
|
||||
Reference in New Issue
Block a user