ESP32: "user C modules" should be able to add components to the build
Right now the list of components is hard coded in
https://github.com/micropython/micropython/blob/97a7cc243b028833bdcb8ce0bc19b2bce7545851/ports/esp32/main/CMakeLists.txt#L96
USer C modules should be able to add new components without having to modify the above file
My current use case is a user module that adds support for the esp32-camera
Fixing this will help others extend micropython with minimal modifications in the core files
Compil for ESP32 with a USER_C_MODULES / usqlite
Hello,
I try to compile MicroPython for ESP32 with the usqlite module () for an education purpose ...
It's seems that this module was build with an old version of MicroPython ... Actually, I have the error :
ERROR: Call to MP_REGISTER_MODULE(MP_QSTR_usqlite, usqlite_module, 1) should be MP_REGISTER_MODULE(MP_QSTR_usqlite, usqlite_module)
I'd made the change but i have new errors ...
I try to find old version of the micropython source to try to downgrade my build .... Where can i find them ?
Thanks
Thomas