14 lines
294 B
Java
14 lines
294 B
Java
package fabrik.simulator.pic16f84.interfaces;
|
|
|
|
public interface FrontendControllerInterface extends PICComponentInterface {
|
|
double getExecutionTimeMultiplier();
|
|
|
|
void sleep();
|
|
|
|
void wakeUpFromSleep();
|
|
|
|
boolean isSleeping();
|
|
|
|
void stopRunFromBackend(String watchdogTimer);
|
|
}
|