I couldn't compile my code by following the docs. I had written my platformio.ini file exactly as described, but I kept getting an error stating that it couldn't find the header file esp_chip_info.h.
Some digging led me to see that the old version of the platform espressif32 was the cause of the issue, so I updated the version I had pinned, and it started working.
I picked v6.6.0 because it was the latest one, implying to me it will probably be compatible for the largest amount of time, and it works when compiled on my Watchy.
I couldn't compile my code by following the docs. I had written my
platformio.ini
file exactly as described, but I kept getting an error stating that it couldn't find the header fileesp_chip_info.h
.Some digging led me to see that the old version of the platform
espressif32
was the cause of the issue, so I updated the version I had pinned, and it started working.I picked
v6.6.0
because it was the latest one, implying to me it will probably be compatible for the largest amount of time, and it works when compiled on my Watchy.