X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=client%2Ftask.h;h=375aafc361a76e4555f98c958b86a9f614a1b151;hb=f39868397acdc4cdcb71b58926dee62327933336;hp=bfa2f559adf0f8e593599f0c1ff3ffe20eae299f;hpb=6c8939998c64aafb8cdfa40e52a227bf72767648;p=mTask.git diff --git a/client/task.h b/client/task.h index bfa2f55..375aafc 100644 --- a/client/task.h +++ b/client/task.h @@ -1,23 +1,31 @@ #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; }; +bool is_interrupt_task(struct task* t); +bool had_interrupt(struct task* t); + +struct task *task_head(void); +struct task *task_next(struct task *t); void task_init(void); -int task_register(void); +void task_register(void); void task_delete(void); -struct task *task_get(int num); +#ifdef __cplusplus +} +#endif #endif