X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=mTaskInterpret.dcl;h=221c8a4fdfb4620e39596a483bafb71c9b26aa0b;hb=6abf86833edeae1742db393160db8a9e5c043889;hp=cce5735bc2c672362cd6c358a476c7d526acd77f;hpb=1c8014ff74afb966b891a4689d8ee3e512300746;p=mTask.git diff --git a/mTaskInterpret.dcl b/mTaskInterpret.dcl index cce5735..221c8a4 100644 --- a/mTaskInterpret.dcl +++ b/mTaskInterpret.dcl @@ -5,16 +5,25 @@ from Control.Monad.State import :: State, :: StateT from Data.Monoid import class Semigroup, class Monoid import mTask -:: MTaskMessage - = MTSds Int String - | MTTask Int String +:: MTaskMSGRecv + = MTTaskAck Int + | MTTaskDelAck Int + | MTSDSAck Int + | MTSDSDelAck Int | MTPub Int String - | MTUpd Int String + | MTMessage String | MTEmpty -instance toString MTaskMessage -encode :: MTaskMessage -> String -decode :: String -> MTaskMessage +:: MTaskMSGSend + = MTTask Int String + | MTTaskDel Int + | MTSds Int String + | MTUpd Int String + +instance toString MTaskMSGRecv +instance toString MTaskMSGSend +encode :: MTaskMSGSend -> String +decode :: String -> MTaskMSGRecv :: BC = BCNop @@ -45,6 +54,9 @@ decode :: String -> MTaskMessage | BCJmp Int | BCJmpT Int | BCJmpF Int + //UserLED + | BCLedOn [Char] + | BCLedOff [Char] //Serial | BCSerialAvail | BCSerialPrint @@ -76,16 +88,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 Stmt e Stmt -instance If ByteCode Stmt Stmt e -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,8 +110,9 @@ 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) -toRealByteCode :: (ByteCode a b) -> (String, BCState) +toRealByteCode :: (ByteCode a b) BCState -> (String, BCState)