Using vTaskDelayUntil with ARM7

Hello! I am getting compiler errors when trying to use vTaskDelayUntil(), the errors comes from task.h and says: identifier "pdTASK_CODE" is undefined When not using delay function the task compiles correctly, any suggestions?? Thanks! /Marcus B

Using vTaskDelayUntil with ARM7

Actually, this occurs when including "task.h" in the header-file, which is required to use vTaskDelayUntil()…

Using vTaskDelayUntil with ARM7

Include projdefs.h BEFORE task.h. I think there was something in v3 that was going to change this.

Using vTaskDelayUntil with ARM7

Thanks! That helped! /Marcus B