Fusing application to one

This commit is contained in:
WickedJack99
2022-03-11 01:35:25 +01:00
parent aae7ec1f25
commit 8a5e499eb7
6 changed files with 3 additions and 22 deletions

View File

@@ -16,6 +16,7 @@ import Backend.FrontendCommandProcessing.CommandDecoder;
import Backend.FrontendCommandProcessing.FrontendCommandProcessingThread;
import Backend.Microcontroller.PIC;
import Backend.Microcontroller.WATCHDOG;
import Frontend.PIC_SIMULATOR_GUI_JAVA.GUIMainFrame;
public class Environment {
@@ -39,6 +40,8 @@ public class Environment {
public Environment() {
GUIMainFrame frame = new GUIMainFrame();
frontendToMainQueue = new ConcurrentLinkedQueue<String>();
mainToFrontendQueue = new ConcurrentLinkedQueue<String>();

View File

@@ -1,10 +0,0 @@
package Frontend.PIC_SIMULATOR_GUI_JAVA;
import javax.swing.JLabel;
public class Main {
public static void main(String[] args) {
GUIMainFrame frame = new GUIMainFrame();
}
}

View File

@@ -1,12 +0,0 @@
package Frontend.PIC_SIMULATOR_GUI_JAVA;
import java.io.File;
public class ReadBackendToFrontendFile {
File backendToFrontendFile = new File("../SIMULATOR_DAT/gui_set.dat");
public ReadBackendToFrontendFile () {
}
}