X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;ds=sidebyside;f=client%2Ftask.h;h=253558e6022c05e81d84cb952fa3b370895643ee;hb=3fe035b92e9bc0b745c57db64e78461b2f36b6d1;hp=6c7dfd3ba8abecddfb723c756c0ea6948250199a;hpb=c3bb3dde2bb886a9f86f9de5f4f96beb8d86b53d;p=mTask.git diff --git a/client/task.h b/client/task.h index 6c7dfd3..253558e 100644 --- a/client/task.h +++ b/client/task.h @@ -1,26 +1,33 @@ #ifndef TASK_H #define TASK_H - -#define MAXTASKS 5 -#define MAXTASKSIZE 1024 +#ifdef __cplusplus +extern "C" { +#endif #include #include struct task { - uint8_t bc[MAXTASKSIZE]; - uint16_t tlen; + uint16_t tasklength; uint16_t interval; - long lastrun; - bool used; + unsigned long lastrun; + uint8_t taskid; + struct task *next; + uint8_t *bc; + char type; + int value; }; bool is_interrupt_task(struct task* t); bool had_interrupt(struct task* t); -void task_init(void); +struct task *task_head(void); +struct task *task_next(struct task *t); + void task_register(void); -void task_delete(void); -struct task *task_get(int num); +void task_delete(uint8_t num); +#ifdef __cplusplus +} +#endif #endif