Laufzeit und Watchdog und Timer

This commit is contained in:
2024-06-02 15:16:01 +02:00
parent 45f9878047
commit c49a073cfd
7 changed files with 209 additions and 15 deletions

View File

@ -25,10 +25,15 @@
<?import javafx.scene.text.Font?>
<?import javafx.scene.text.Text?>
<?import javafx.collections.FXCollections?>
<?import javafx.scene.control.ComboBox?>
<?import java.lang.String?>
<AnchorPane stylesheets="@styles.css" xmlns="http://javafx.com/javafx/21" xmlns:fx="http://javafx.com/fxml/1" fx:controller="fabrik.simulator.pic16f84.Controller_Frontend">
<children>
<ListView fx:id="lstContentListView" layoutY="31.0" prefHeight="645.0" prefWidth="550.0" />
<ListView fx:id="lstContentListView" layoutY="31.0" prefHeight="645.0" prefWidth="550.0">
</ListView>
<HBox layoutY="688.0" prefHeight="24.0" prefWidth="550.0">
<children>
<Button fx:id="stepintoButton" mnemonicParsing="false" onAction="#stepintoButton" text="Step IN">
@ -50,6 +55,16 @@
</HBox>
<VBox layoutX="14.0" layoutY="727.0">
<children>
<ComboBox fx:id="executionTimeComboBox">
<items>
<FXCollections fx:factory="observableArrayList">
<String fx:value="4 MHZ" />
<String fx:value=" 8 MHZ" />
<String fx:value=" 16 MHZ" />
</FXCollections>
</items>
</ComboBox>
<Label fx:id="totalExecutionTimeLabel" text="Total Execution Time: 0µs" />
<CheckBox fx:id="wdtCheck" mnemonicParsing="false" onAction="#toggleWatchdog" text="Watchdog-Timer">
<VBox.margin>