MicroOcpp
MicroOcpp copied to clipboard
[Firmware Update]How Can We do The Firmware update in ESP-IDF, there is no any document available how to implement it..
Unfortunately, there's no designated C-API for OTA yet. To implement custom Firmware Upgrades in C, you need to write wrappers for the MicroOcpp functions in C++ and give these wrappers C-linkage so that you can access them from C-scope. Actually that's not complicated at all and MicroOcpp_c.h also works that way. See this issue for more information: https://github.com/matth-x/MicroOcpp/issues/253#issuecomment-1908676774
@aditya111222 did you implement it, can you share the implementation?