Trying to use vTaskDelayUntil function in FreeRTOS and when I compile, I get an error msg implicit declaration of function. I looked at the FreeRTOSConfig.h file and the #define INCLUDE_vTaskDelayUntil is set to 1. So I’m at a loss as how to fix the problem, and I’m dead in the water until I solve it. Anyone know the ‘magic formula’ to fix this?
The environment is esp-idf, PlatformIO under VSCode, and a ESP32doit-devel-v1 board. I have been able to get the WiFi to attach to my AP, so I know the basic environment is working.
Thanks
Jerry
Please disregard. My mistake. I mispelled the function name - My BAD!!
1 Like
Easily done… even worse with these case-sensitive coding languages!
Splelling eorrrs is the reason I just added codespell on my CI checks…
Probably won’t help for mistyped code though. 
I actually didn’t misspell the function name, I typed in VtaskDelayUntil instead of vTaskDelayUntil. Of course intellsense was telling me I had a problem, but I disregarded the spelling issue and proceeded to do battle with the Compiler environment. Anyway, right name, wrong punctuation.
1 Like