Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
The ESP32-CAM moduleIntroduction | ||||||||
Line: 89 to 89 | ||||||||
![]() As you can see, it points to the esp-idf to be used, and it makes sure that the correct idf.py, which is stored in esp-idf/tools, is found in the execution path. | ||||||||
Added: | ||||||||
> > | Reserving some space in SPIRAM for the image bufferStandard MicroPython uses all the SPIRAM for its heap. This results in an error when the esp32 camera driver tries to allocate space in SPIRAM for its image buffer. I therefore modified the MicroPython sources to keep some free space for the camera driver. Here is the part I modified in main.c. As you can see, 256 kBytes are reserved.
After this modification, you may follow the description in https://lemariva.com/blog/2020/06/micropython-support-cameras-m5camera-esp32-cam-etc | |||||||
-- ![]() | ||||||||
Line: 106 to 113 | ||||||||
| ||||||||
Added: | ||||||||
> > |
|