changed mTaskInterpret to output a real task
authorMart Lubbers <mart@martlubbers.net>
Tue, 22 Nov 2016 14:05:09 +0000 (15:05 +0100)
committerMart Lubbers <mart@martlubbers.net>
Tue, 22 Nov 2016 14:05:09 +0000 (15:05 +0100)
Makefile
int/int.c
mTaskInterpret.dcl
mTaskInterpret.icl
mTaskMakeSymbols.icl

index 0332515..1a36a32 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
 CLEAN_HOME?=/opt/clean
 CLM:=clm
-override CLMFLAGS+=-dynamics -l -no-pie -h 200M -t -nt -lat
+override CLMFLAGS+=-dynamics -l -no-pie -h 200M -t -nt #-lat
 CLMLIBS:=\
        -I $(CLEAN_HOME)/lib/iTasks-SDK/Patches/Dynamics\
        -I $(CLEAN_HOME)/lib/iTasks-SDK/Patches/Generics\
index f3332f7..6300c9d 100644 (file)
--- a/int/int.c
+++ b/int/int.c
@@ -47,9 +47,8 @@ bool input_available(int fd){
 void read_message(int fd_in, int fd_out)
 {
        //Find next task
-       uint8_t c;
+       uint8_t c, ct;
        uint16_t tasklen;
-       uint8_t ct;
 
        for(ct = 0; ct<MAXTASKS; ct++)
                if(!tasks_used[ct])
@@ -59,9 +58,9 @@ void read_message(int fd_in, int fd_out)
 
        debug("Receiving input for task %d\n", ct);
        read(fd_in, &c, 1);
-       if((char) c == 's') {
+       if(c == 's') {
                debug("Receiving an sds\n");
-       } else if((char) c == 't'){
+       } else if(c == 't'){
                read(fd_in, &c, 1);
                tasklen = 256*c;
                read(fd_in, &c, 1);
@@ -79,7 +78,7 @@ void read_message(int fd_in, int fd_out)
                debug("Received a task of length %d\n", tasklen);
                tasks_used[ct] = true;
        } else {
-               die("Unknown message: %c?\n", c);
+               debug("Unknown message: %X?\n", c);
        }
 }
 
@@ -91,7 +90,7 @@ void run_task(char *program)
        char stack[1024] = {0};
        while(pc != plen){
                switch(program[pc++]){
-               case BCNOP:;
+               case BCNOP:
                        break;
                case BCPUSH:
                        stack[sp++] = program[pc++];
@@ -174,12 +173,19 @@ void run_task(char *program)
                        printf("SerialParseInt()\n");
                        break;
                case BCANALOGREAD:
-                       printf("AnalogRead()\n");
+                       printf("AnalogRead(%d)\n", program[pc++]);
                        break;
                case BCANALOGWRITE:
-                       printf("AnalogWrite()\n");
+                       printf("AnalogWrite(%d)\n", program[pc++]);
+                       break;
+               case BCDIGITALREAD:
+                       printf("DigitalRead(%d)\n", program[pc++]);
+                       break;
+               case BCDIGITALWRITE:
+                       printf("DigitalWrite(%d)\n", program[pc++]);
+                       break;
                default:
-                       die("Unrecognized command: %X\n", program[--pc]);
+                       die("Unrecognized command: %d\n", program[--pc]);
                }
        }
 }
@@ -204,7 +210,6 @@ int main(void)
                //Check for new tasks
                if(input_available(fd_in)){
                        read_message(fd_in, fd_out);
-                       exit(1);
                }
                //Run tasks
                for(ct = 0; ct<MAXTASKS; ct++){
@@ -215,6 +220,7 @@ int main(void)
                        debug("Going to execute task %d\n", ct);
                        run_task(tasks[ct]);
                }
+//             exit(1);
                usleep(10);
        }
 
index 53bb69b..2648cb9 100644 (file)
@@ -6,7 +6,7 @@ import mTask
 
 :: BC
        = BCNop
-       | BCPush String
+       | BCPush Int
        | BCPop
        //Unary ops
        | BCNot
@@ -35,10 +35,10 @@ import mTask
        | BCSerialRead
        | BCSerialParseInt
        //Pins
-       | BCAnalogRead String
-       | BCAnalogWrite String
-       | BCDigitalRead String
-       | BCDigitalWrite String
+       | BCAnalogRead Pin
+       | BCAnalogWrite Pin
+       | BCDigitalRead Pin
+       | BCDigitalWrite Pin
        | BCTest AnalogPin
 
 //:: ByteCode a p = BC (BCState -> ([BC], BCState))
@@ -48,7 +48,7 @@ import mTask
                a::()
        }
 
-toByteVal :: BC -> String
+toByteVal :: BC -> [Char]
 toReadableByteVal :: BC -> String
 
 //instance toCode Pin
index 9a51e0c..886f463 100644 (file)
@@ -16,18 +16,36 @@ import StdList
 from Data.Func import $
 from Text import class Text(concat,join,toUpperCase), instance Text String
 
-toByteVal :: BC -> String
-toByteVal a = toString $ toChar $ consIndex{|*|} a
-
-derive gPrint BC, AnalogPin
-derive consIndex BC
-derive consName BC
+toByteVal :: BC -> [Char]
+toByteVal b
+# bt = toByteCode b
+= [bt:case b of
+               (BCPush i) = [toChar i]
+               (BCAnalogRead i) = [toChar i]
+               (BCAnalogRead i) = [toChar i]
+               (BCAnalogWrite i) = [toChar i]
+               (BCDigitalRead i) = [toChar i]
+               (BCDigitalWrite i) = [toChar i]
+               (BCJmp i) = [toChar i]
+               (BCJmpT i) = [toChar i]
+               (BCJmpF i) = [toChar i]
+               _ = []]
+       where
+               toByteCode b = toChar $ consIndex{|*|} b + 1
+
+instance toChar Pin where
+       toChar (Digital p) = toChar $ consIndex{|*|} p + 1
+       toChar (Analog p) = toChar $ consIndex{|*|} p + 1
+
+derive gPrint BC, AnalogPin, Pin, DigitalPin
+derive consIndex BC, Pin
+derive consName BC, Pin
 
 toReadableByteVal :: BC -> String
 toReadableByteVal a = printToString a
 
 instance arith ByteCode where
-       lit x = BC [BCPush $ toCode x]
+       lit x = BC [BCPush $ 1]
        (+.) x y = x <++> y <+-> [BCAdd]
        (-.) x y = x <++> y <+-> [BCSub]
        (*.) x y = x <++> y <+-> [BCMul]
@@ -45,12 +63,12 @@ instance boolExpr ByteCode where
        (>=.) x y = x <++> y <+-> [BCGeq]
 
 instance analogIO ByteCode where
-       analogRead p = BC [BCAnalogRead $ toCode p]
-       analogWrite p b = b <+-> [BCAnalogWrite $ toCode p]
+       analogRead p = BC [BCAnalogRead $ pin p]
+       analogWrite p b = b <+-> [BCAnalogWrite $ pin p]
 
 instance digitalIO ByteCode where
-       digitalRead p = BC [BCDigitalRead $ toCode p]
-       digitalWrite p b = b <+-> [BCDigitalWrite $ toCode p]
+       digitalRead p = BC [BCDigitalRead $ pin p]
+       digitalWrite p b = b <+-> [BCDigitalWrite $ pin p]
 
 instance If ByteCode Stmt Stmt Stmt where If b t e = BCIfStmt b t e
 instance If ByteCode Stmt e Stmt where If b t e = BCIfStmt b t e
@@ -85,13 +103,22 @@ instance zero BCState where
        zero = {a=()}
 
 toRealByteCode :: (ByteCode a Expr) -> String
-toRealByteCode (BC x) = concat $ map toByteVal x
+toRealByteCode (BC x) = concat $ map (toString o toByteVal) x
 
 //Start :: ByteCode Int Expr
 //Start = (lit 36 +. lit 42) +. lit 84
 
+to16bit :: Int -> String
+to16bit i = toString (toChar (i/265)) +++ toString (toChar (i rem 265))
+
 //Run test programma en pretty print
-Start = toRealByteCode $ If (lit True) (analogRead A1) (analogRead A0)
+Start :: String
+Start = "t" +++ to16bit (size b) +++ b
+//Start :: ByteCode Int Expr
+//Start = bc
+       where
+               bc = If (lit True) (analogRead A1) (analogRead A0)
+               b = toRealByteCode bc
 //Start :: ByteCode Int Expr
 //Start = If (lit True) (analogRead A1) (analogRead A0)
 //Start = If ((lit 36) ==. (lit 42)) (noOp) (noOp)
index bb4c33e..b505ee8 100644 (file)
@@ -18,9 +18,9 @@ from Data.Func import $
 import Data.List
 from Text import class Text(join,toUpperCase), instance Text String
 
-derive consIndex BC
-derive consName BC
-derive conses BC, AnalogPin
+derive consIndex BC, Pin
+derive consName BC, Pin
+derive conses BC, AnalogPin, DigitalPin, Pin
 
 (<+) infixr 5 :: a b -> String | toString a & toString b
 (<+) a b = toString a +++ toString b