CoretechR / OMOTE

Open Source Remote Using ESP32 and LVGL
https://hackaday.io/project/191752
GNU General Public License v3.0
1.02k stars 114 forks source link

Change partition table to get more space for the application #43

Closed phant0mias closed 9 months ago

phant0mias commented 9 months ago

The used CPU has 4MB of flash memory. With the default settings only 1310720 bytes are used for the program Current omote with default settings: Flash: [========= ] 85.1% (used 1115225 bytes from 1310720 bytes)

Using a different partition table will solve this problem.

As the OTA feature is not needed this partition can be used for the application. With this partition table 3145728 bytes are available for the application

Flash: [==== ] 35.5% (used 1115225 bytes from 3145728 bytes)

CoretechR commented 9 months ago

That makes sense to me, thank you!