Programming freertos using ethernet module with esp32

Good day, i have esp32 and w5500 ethernet module. I want to run ethernet events and mqtt in freertos. is it possible ?

I assume you mean that in the context of Arduino

you could look at adding a possibly W5500 compatible Ethernet library for your ESP32

see the note at the end:

ESP32 may require edit to SPI.h to add SPI.transfer(data, size) SPI.transfer(buffer, size) is missing · Issue #1623 · espressif/arduino-esp32 · GitHub

When the ESP32 boots up, it boots into an OS called freeRTOS, which then runs everything else. In other words, unless you rewrite the ESP32's boot loader, freeRTOS is always running on an ESP32.

This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.