Page 1 of 1

FreeRTOS.h missing - where do I put it?

Posted: Tue Oct 05, 2021 6:39 pm
by Redeemed
Okay so I'm STILL trying to compile Gebl Esp32/bdring and have slowly whittled down the errors.
I'm now getting this one:
FreeRTOS.h no such file or directory.

I've downloaded a string of code from GutHub and created my own FreeRTOS.h but I have no idea where to put it in ther Grbl folder structure.
The error also refers to the /src/I2SOut.cpp which tbh I can't even find in the 32 esp folder.

Any suggestions please?

Re: FreeRTOS.h missing - where do I put it?

Posted: Sat Oct 09, 2021 6:37 am
by ESP_Dazz
The FreeRTOS.h header under ESP-IDF (and thus Adruino) is included via

Code: Select all

#include "freertos/FreeRTOS.h"
You should not create your own FreeRTOS.h as ESP-IDF FreeRTOS sources/headers contain SMP modifications, thus will differ significantly from vanilla FreeRTOS.