added debug statements, dynamic allocation is working for tasks
[mTask.git] / client / client.c
index 8fa596f..ce1d1f2 100644 (file)
@@ -21,6 +21,8 @@
 #define MSG_SDS_UPD 'u'
 #define MSG_SPEC 'c'
 
+#define LOOPDELAY 100
+
 void read_message(void)
 {
        //Find next task
@@ -43,7 +45,12 @@ void read_message(void)
                        break;
                case MSG_DEL_TASK:
                        debug("Receiving a delete task request");
-                       task_delete();
+                       c = read16();
+                       task_delete(c);
+                       //Write acknowledgement
+                       write_byte('d');
+                       write16(c);
+                       write_byte('\n');
                        break;
                case MSG_GET_TASK:
                        debug("Receiving a task");
@@ -61,39 +68,41 @@ void read_message(void)
                default:
                        debug("Unknown message: %X", c);
                }
+       } else {
+//             debug("No input");
        }
 }
 
+unsigned long loopmillis = 0;
 void loop(void)
 {
-       int ct;
-       long cyclestart;
-       struct task *curtask;
+#ifdef ARDUINO_ESP8266_NODEMCU
+       if(getmillis()-loopmillis < LOOPDELAY){
+               return;
+       }
+       loopmillis = getmillis();
+#endif
+       debug("Loop");
 
        read_message();
 
        //Run tasks
-       cyclestart = getmillis();
-       for(ct = 0; ct<MAXTASKS; ct++){
-               //See whether the task is even in use
-               if((curtask = task_get(ct)) == NULL){
-//                     debug("Task %d not implemented\n", ct);
-                       continue;
-               }
+       unsigned long cyclestart = getmillis();
+       for(struct task *t = task_head(); t != NULL; t = task_next(t)){
                //interrupt task
-               if(is_interrupt_task(curtask) && had_interrupt(curtask)){
-                       debug("Interrupt task %d not implemented", ct);
-                       run_task(curtask);
+               if(is_interrupt_task(t) && had_interrupt(t)){
+                       debug("Interrupt task %d not implemented", t->taskid);
+                       run_task(t);
                //Interval task, and interval passed
-               } else if(cyclestart-curtask->lastrun > curtask->interval){
-                       debug("Running interval task: %d", ct);
-                       run_task(curtask);
+               } else if(cyclestart-t->lastrun > t->interval){
+                       debug("Running interval task: %d", t->taskid);
+                       run_task(t);
 
                        //Oneshot task, thus disable
-                       if(curtask->interval == 0){
-                               curtask->used = false;
+                       if(t->interval == 0){
+                               task_delete(t->taskid);
                        }
-                       curtask->lastrun = cyclestart;
+                       t->lastrun = cyclestart;
                }
        }
 }
@@ -109,17 +118,18 @@ int main(int argc, char *argv[]){
 #endif
 
        //Initialize systems
-       setup();
+       real_setup();
        sds_init();
        task_init();
        debug("sending device spec");
+
+#ifndef ARDUINO_ESP8266_NODEMCU
        while(true){
                //Check for newtasks
                loop();
-               msdelay(100);
+               msdelay(LOOPDELAY);
        }
 
-#ifndef ARDUINO_ESP8266_NODEMCU
        return 0;
 #endif
 }