esp32-snippets icon indicating copy to clipboard operation
esp32-snippets copied to clipboard

Versions of esp32-snippets and ESP-IDF

Open BobaTrek opened this issue 5 years ago • 3 comments

What is the version compatibility of esp32-snippets to versions of ESP-IDF?

I downloaded the Master from the esp-idf github and get numerous compilation errors when I compiled it with the Master from esp32-snippets, mostly regarding ringbuf_type_t being deprecated.

esp-idf has releases 3.0. 3.1, 3.2, and 3.3. The Master is currently version 4.0-dev.

Which work with esp32-snippets?

(Someday it would be great if this code base was merged into esp-idf!!!)

BobaTrek avatar Aug 06 '19 00:08 BobaTrek

This library should work with all esp-idf v3.x i think. Library has not been updated for some time, so its possible it wont work with esp-idf master.

chegewara avatar Aug 09 '19 19:08 chegewara

esp-idf commit 8a597b8 changed 'ringbuf_type_t' to 'RingbufferType_t'. Make this change in FreeRTOS.h:61 & FreeRTOS.cpp:232 and esp32-snippets should compile against current master branch.

mws-rmain avatar Oct 15 '19 13:10 mws-rmain

@mws-rmain Thanks for the 'ringbuf_type_t' tip!

jmporter34 avatar May 02 '22 15:05 jmporter34