try something
authorMart Lubbers <mart@martlubbers.net>
Mon, 23 Jan 2017 11:14:39 +0000 (12:14 +0100)
committerMart Lubbers <mart@martlubbers.net>
Mon, 23 Jan 2017 11:14:39 +0000 (12:14 +0100)
int/interface.c
int/interface_linux.c
int/interpret.c
int/main.c
int/task.c
miTask.icl

index bec4f09..9212720 100644 (file)
@@ -75,13 +75,13 @@ void setup(void)
 
 void debug(char *fmt, ...)
 {
-#ifdef DEBUG
        unsigned int i;
        write_byte('m');
        for(i = 0; i<strlen(fmt); i++){
                write_byte((uint8_t)fmt[i]);
        }
        write_byte('\n');
+#ifdef DEBUG
 #endif
        (void)fmt;
 }
index 381df88..dd94993 100644 (file)
@@ -73,7 +73,7 @@ void write_dpin(uint8_t i, bool b)
 bool read_dpin(uint8_t i)
 {
        debug("dread %d", i);
-       return false;
+       return true;
        (void) i;
 }
 
index c3c6bd1..6c43852 100644 (file)
@@ -8,7 +8,7 @@
 #include "sds.h"
 
 #ifdef STM
-#define trace(op, ...) ;
+#define trace(op, ...) {};
 #else
 #define trace(op, ...) printf("pc: %d, sp: %d, op: " op "\n", pc, sp, ##__VA_ARGS__);
 #endif
index 9b6a88b..b813ab2 100644 (file)
@@ -96,7 +96,6 @@ int main(int argc, char *argv[]){
        task_init();
 
        debug("booting up");
-       write_byte('\n');
        while(true){
                //Check for newetasks
                debug("loop");
index 882baa4..567fd9f 100644 (file)
@@ -37,8 +37,8 @@ int task_register(void)
        //Read task bytecode
        for(unsigned int i = 0; i<tasks[ct].tlen; i++){
                tasks[ct].bc[i] = read_byte();
-               debug("t[][%i]: 0x%02x %d", i,
-                       tasks[ct].bc[i], tasks[ct].bc[i]);
+//             debug("t[][%i]: 0x%02x %d", i,
+//                     tasks[ct].bc[i], tasks[ct].bc[i]);
        }
        //Return the task number for later removal
        debug("Received a task of length %d", tasks[ct].tlen);
index a1f6e56..1274601 100644 (file)
@@ -61,6 +61,7 @@ mTaskTask ch =
                (
                        consumeNetworkStream (processSDSs sdsShares messageShare) ch ||-
                        viewSharedInformation "channels" [ViewWith lens] ch ||-
+                       viewSharedInformation "messages" [] messageShare ||-
                        viewSh sdsShares ch
                ) >>* [OnAction ActionFinish (always shutDown)]
        )
@@ -104,9 +105,7 @@ mTaskTask ch =
                                )
                        ) ||- viewSh xs ch
 
-               sdsShares = makeShares st
-
-               (msgs, st) = toMessages 500 (toRealByteCode (unMain bc))
+               (msgs, sdsShares) = makeBytecode 500 bc
 
                bc :: Main (ByteCode () Stmt)
                bc = sds \x=1 In sds \pinnetje=1 In {main =
@@ -131,18 +130,16 @@ mTaskTask ch =
                                                digitalWrite D2 (lit True)
                                        )
                                )}
-//             bc :: Main (ByteCode Int Stmt)
-//             bc = sds \x=1 In {main =
-//                     If (x ==. lit 3)
-//                     (x =. lit 1)
-//                     (x =. x +. lit 1) :. pub x}
-
-makeShares :: BCState -> [(Int, Shared Int)]
-makeShares {sdss=[]} = []
-makeShares s=:{sdss=[(i,d):xs]} =
-       [(i, ms ("mTaskSDS-" +++ toString i) 1):makeShares {s & sdss=xs}]
+
+makeBytecode :: Int (Main (ByteCode () Stmt)) -> ([MTaskMSGSend], [(Int, Shared Int)])
+makeBytecode timeout bc
+# (msgs, st) = toMessages timeout (toRealByteCode (unMain bc))
+# shares = map (\(i,d)->(i, sdsFocus (s i) (memoryStore (s i) (Just (dd d))))) st.sdss
+= (msgs, shares)
        where
-               ms name i = sdsFocus name (memoryStore name (Just i))
+               s i = "mTaskSDS-" +++ toString i
+               dd [x,y] = (toInt x)*265+(toInt y)
+       
 
 sendMsg :: [MTaskMSGSend] (Shared ([MTaskMSGRecv],Bool,[MTaskMSGSend],Bool)) -> Task ()
 sendMsg m ch = upd (\(r,rs,s,ss)->(r,rs,s ++ m,ss)) ch @! ()