X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=mTaskInterpret.dcl;h=319ffb3e7e4d6f09bb238c27a0b92e4057d7fc4e;hb=68e65ffa79b10fc6762a0f7989a268126fc20c1b;hp=0fb9efc9885580b0b8acadf0e35db397f730e881;hpb=7edf1780ae3b91d9136db2d94b25e88d64896645;p=mTask.git diff --git a/mTaskInterpret.dcl b/mTaskInterpret.dcl index 0fb9efc..319ffb3 100644 --- a/mTaskInterpret.dcl +++ b/mTaskInterpret.dcl @@ -5,16 +5,24 @@ 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 + | MTSds Int String + | MTUpd Int String + +instance toString MTaskMSGRecv +instance toString MTaskMSGSend +encode :: MTaskMSGSend -> String +decode :: String -> MTaskMSGRecv :: BC = BCNop @@ -45,6 +53,9 @@ decode :: String -> MTaskMessage | BCJmp Int | BCJmpT Int | BCJmpF Int + //UserLED + | BCLedOn [Char] + | BCLedOff [Char] //Serial | BCSerialAvail | BCSerialPrint @@ -76,16 +87,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 @@ -94,9 +107,10 @@ instance assign ByteCode instance seq ByteCode instance serial ByteCode -pub :: (ByteCode a b) -> ByteCode a b +//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)