I’m just starting to play around with this board and got programs to compile and load with PlatformIO. But I keep noticing that the reported percentage of flash used seems large for a basic program. Then I noticed that the flash size in the compile results seems way short, but like a factor of 3. In looking at the board file for this it seems like it puts in the correct values for the flash size of 4MB but the result window always shows about 1.4MB as the maximum size. Im not sure why that is:
Flash: 22.3% (used 321365 bytes from 1441792 bytes)
[env:adafruit_feather_esp32s3]
platform = espressif32
board = adafruit_feather_esp32s3
framework = arduino
monitor_speed = 115200
Looking at this:
From the documentation shows the line:
"maximum_size": 4194304,
So I’m a little lost on why it thinks my flash is 1.44MB?