Reset FSR

This commit is contained in:
2024-06-03 13:14:53 +02:00
parent 889f9a307b
commit 1d89bf16cc
5 changed files with 14 additions and 21 deletions

View File

@ -241,8 +241,7 @@ public class Controller_Frontend {
}
WatchdogTimer.testAndTrigger();
Table.refresh();
Stage stage = (Stage) stepintoButton.getScene().getWindow();
CreateWindow.refreshTable(stage);
CreateWindow.refreshTable();
IOPorts.refreshUI(getTRISbuttons(), getPORTbuttons());
updateStack();
updateWatchdog();
@ -578,15 +577,6 @@ public class Controller_Frontend {
stackVisual.setItems(observedList);
}
//
// @FXML
// private static Label dummyLabel;
//
// public static void triggerTableRefresh(){
// dummyLabel.setText(" ");
// CreateWindow.refreshTable((Stage) dummyLabel.getScene().getWindow());
// }
private void updateWatchdog (){
wdtCheck.setText("Watchdog-Timer: " + WatchdogTimer.get() + "µs");
}