forkineye / ESPAsyncE131

Asynchronous E1.31 (sACN) library for Arduino ESP8266 and ESP32
129 stars 28 forks source link

compilation errors #30

Open jpberry opened 2 months ago

jpberry commented 2 months ago

Hello, I've been using this library fine, until a couple months ago. Code than used to compile no longer works. I didn't change anything, so it seems to me a new upgrade of the arduino ide has broken the code.

My first problem was with WebAuthentication.cpp : mbedtls_md5_starts_ret no longer exists, the compiler suggests to replace it with mbedtls_md5_starts (there are two other similare functions).

I then ran into problems with AsyncWebSocket.cpp, which doesn't like ets_printf and suggests replacing it with vswprintg - but that creates other problems, with non-convertable string types.

I'm no specialist, so kind of uneasy with fu**ng around with code I didn't write.

Suggestions ?

Thanks,

JP