X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=mTaskInterpret.dcl;h=01059445763fe23c110829eba163e53af4d050a3;hb=9f47008270ad2ab66d7787eb29b0f83a82a8e42e;hp=1baf8781afc2ced13425d2d92c1623321d8ad113;hpb=955c4eb992b45e48a1a3dad6418236431ddcd095;p=mTask.git diff --git a/mTaskInterpret.dcl b/mTaskInterpret.dcl index 1baf878..0105944 100644 --- a/mTaskInterpret.dcl +++ b/mTaskInterpret.dcl @@ -5,16 +5,21 @@ from Control.Monad.State import :: State, :: StateT from Data.Monoid import class Semigroup, class Monoid import mTask -:: MTaskMessage +:: MTaskMSGRecv + = MTPub Int String + | MTMessage String + | MTTaskAdded Int + | MTEmpty + +:: MTaskMSGSend = MTSds Int String | MTTask Int String - | MTPub Int String | MTUpd Int String - | MTEmpty -instance toString MTaskMessage -encode :: MTaskMessage -> String -decode :: String -> MTaskMessage +instance toString MTaskMSGRecv +instance toString MTaskMSGSend +encode :: MTaskMSGSend -> String +decode :: String -> MTaskMSGRecv :: BC = BCNop @@ -45,6 +50,9 @@ decode :: String -> MTaskMessage | BCJmp Int | BCJmpT Int | BCJmpF Int + //UserLED + | BCLedOn [Char] + | BCLedOff [Char] //Serial | BCSerialAvail | BCSerialPrint @@ -76,16 +84,18 @@ instance toByteCode Char instance toByteCode String instance toByteCode Long instance toByteCode Button +instance toByteCode UserLED instance toChar Pin instance arith ByteCode instance boolExpr ByteCode instance analogIO ByteCode instance digitalIO ByteCode -instance If ByteCode Stmt Stmt Stmt -instance If ByteCode e Stmt Stmt -instance If ByteCode Stmt e Stmt -instance If ByteCode x y Expr +instance userLed ByteCode +//instance If ByteCode Stmt Stmt Stmt +//instance If ByteCode e Stmt Stmt +//instance If ByteCode Stmt e Stmt +instance If ByteCode x y Stmt instance IF ByteCode instance noOp ByteCode @@ -96,7 +106,8 @@ instance serial ByteCode //pub :: (ByteCode a b) -> ByteCode a b -toMessages :: Int (String, BCState) -> [MTaskMessage] +toMessages :: Int (String, BCState) -> ([MTaskMSGSend], BCState) +toSDSUpdate :: Int Int -> [MTaskMSGSend] toByteVal :: BC -> [Char] toReadableByteCode :: (ByteCode a b) -> (String, BCState)