Dependency inversions

This commit is contained in:
2025-01-26 15:44:01 +01:00
parent c8f23176d2
commit 52daa062df
27 changed files with 955 additions and 482 deletions

View File

@ -0,0 +1,13 @@
package fabrik.simulator.pic16f84.interfaces;
public interface FrontendControllerInterface {
double getExecutionTimeMultiplier();
void sleep();
void wakeUpFromSleep();
boolean isSleeping();
void stopRunFromBackend(String watchdogTimer);
}