Hello,
On ESP32, framework=Arduino, the main loop runs on top of FreeRTOS, whose features can basically be used freely.
On ESP8266 there’s an Arduino framework and a separate FreeRTOS framework. Is there any way to combine the two?
Background: I have this program here which uses both Arduino- and FreeRTOS-style code quite freely. It works on ESP32, but I need to run it (or as much of it as will fit) on an ESP8266.
The fact that there even is a separate SDK for it is rather annoying IMHO. If you want a sustainable ecosystem, you create one SDK. Then you write an open-source shim layer to adapt it to FreeRTOS mainline (where necessary) / add support for it to FreeRTOS mainline (where possible).
Presto, somebody else can do the same thing for any other RTOS.
Actually, now that I think of it, right now my best bet (assuming I want to spend that much effort, which is still up in the air) seems to be to replace the FreeRTOS-specific bits and pieces in the code I’m adapting with RIOT-specific bits and pieces. RIOT has an Arduino shim, so it’ll support the Arduino-ish parts without ripping those out also, and it runs on top of FreeRTOS (ESP32) as well as on bare metal (ESP8266). The problem is that platformio doesn’t support it (yet(?)); see RIOT-OS support · Issue #3456 · platformio/platformio-core · GitHub
Hi! here an update, I recently published an arduino core for esp8266 based on RTOS_SDK (GitHub - espressif/ESP8266_RTOS_SDK: Latest ESP8266 SDK based on FreeRTOS, esp-idf style.), it is a lightweight version of FreeRTOS maintained by espressif that shares idf framework with FreeRTOS for esp32. The project is still in development, but for now you can use the FreeRTOS concurrency tools, basic esp32 arduino core Wifi libraries such as WebServer or HttpClient and others such as ESP32Time using the Arduino environment to develop and install your sketchs on an esp8266.
First special thanks for making these tools.
I try step by step instruction
for this line :
… This proccess is to link configuration of the esp8266RTOSCore with Arduino IDE, but idf tools needs a git repository in the sdk, so, download this project with git and copy the entire git repository to the arduino core installation directory, even .git directory. Tipically, you core installation will be in:
can you more explain about “idf tools” files source download and replace it to Arduino location .
remove all and place new or overwrite?
BTW : I try to install it on Arduino IDE 2.3.3 (on Windows) too.
This is error messages for both 1.0.2 & 1.0.3
Please help me with the installation if it’s possible for you.
Thank you.
Tool esp8266RTOS:xtensa-lx106-elf@8_4_0-esp-2020r3 already installed
Downloading packages
esp8266RTOS:esp8266RTOS@1.0.2
Installing platform esp8266RTOS:esp8266RTOS@1.0.2
Failed to install platform: ‘esp8266RTOS:esp8266RTOS:1.0.2’.
Error: 13 INTERNAL: Cannot install platform: installing platform esp8266RTOS:esp8266RTOS@1.0.2: extracting archive: Create link C:\Users\Admin\AppData\Local\Arduino15\tmp\package-986200152\esp8266RTOSArduCore-1.0.2\components\coap\libcoap\README: symlink README.md C:\Users\Admin\AppData\Local\Arduino15\tmp\package-986200152\esp8266RTOSArduCore-1.0.2\components\coap\libcoap\README: A required privilege is not held by the client.
Your issue comes from the IDE version. The recommended and tested latest version is 1.8x.
Arduino sets some configurations when you install SDKs from the IDE, so, to link the IDE with the esp8266RTOSArduCore SDK, it is necessary to download it from the IDE using the json_index. On the other hand, IDF tools for RTOS_SDK need a git repository to work correctly, so you need to add some git configuration to the SDK downloaded from the IDE. The easiest way to do this is to download esp8266RTOCore as a regular git repository and replace all information from the SDK downloaded from the IDE with the git repository, including the .git extension.
Well, Espressif doesn’t have good compatibility with Windows, so all of this is a workaround to develop under Windows, but the recommended way is to use a Linux distribution.