-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
49 changed files
with
416 additions
and
416 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...script/javareceiver/core/ZcodeStatus.java → ...ript/javareceiver/core/ZscriptStatus.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...vm/java-receiver-token/src/main/java/net/zscript/javareceiver/execution/ActionSource.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
package net.zscript.javareceiver.execution; | ||
|
||
import net.zscript.javareceiver.core.Zcode; | ||
import net.zscript.javareceiver.core.Zscript; | ||
import net.zscript.javareceiver.core.ZcodeOutStream; | ||
|
||
public interface ActionSource { | ||
ZcodeAction getAction(); | ||
|
||
ZcodeOutStream getOutStream(Zcode zcode); | ||
ZcodeOutStream getOutStream(Zscript zscript); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...jvm/java-receiver-token/src/main/java/net/zscript/javareceiver/execution/ZcodeAction.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
package net.zscript.javareceiver.execution; | ||
|
||
import net.zscript.javareceiver.core.Zcode; | ||
import net.zscript.javareceiver.core.Zscript; | ||
import net.zscript.javareceiver.core.ZcodeOutStream; | ||
|
||
public interface ZcodeAction { | ||
boolean isEmptyAction(); | ||
|
||
void performAction(Zcode z, ZcodeOutStream out); | ||
void performAction(Zscript z, ZcodeOutStream out); | ||
|
||
boolean canLock(Zcode z); | ||
boolean canLock(Zscript z); | ||
|
||
boolean lock(Zcode z); | ||
boolean lock(Zscript z); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 11 additions & 11 deletions
22
...s/jvm/java-receiver-token/src/main/java/net/zscript/javareceiver/modules/ZcodeModule.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.