- esptool.py --chip esp32 image_info hello_world.bin
- esptool.py v2.9-dev
- Image version: 1
- Entry point: 40081094
- 6 segments
- Segment 1: len 0x0775c load 0x3f400020 file_offs 0x00000018 [DROM]
- Segment 2: len 0x02340 load 0x3ffb0000 file_offs 0x0000777c [BYTE_ACCESSIBLE, DRAM, DMA]
- Segment 3: len 0x0654c load 0x40080000 file_offs 0x00009ac4 [IRAM]
- Segment 4: len 0x14a40 load 0x400d0020 file_offs 0x00010018 [IROM]
- Segment 5: len 0x04c5c load 0x4008654c file_offs 0x00024a60 [IRAM]
- Segment 6: len 0x00010 load 0x50000000 file_offs 0x000296c4 [RTC_DATA]
- Checksum: 70 (valid)
- Validation Hash: d8b3e027f6daad64f2b87de237a6c4223260cbc65f2093b2ef071bcfbd5a705a (valid)
- esptool.py --chip esp32 image_info http_server_demo.bin
- esptool.py v2.9-dev
- Image version: 1
- Entry point: 400814f0
- 6 segments
- Segment 1: len 0x1e3b0 load 0x3f400020 file_offs 0x00000018 [DROM]
- Segment 2: len 0x01c40 load 0x3ffb0000 file_offs 0x0001e3d0 [BYTE_ACCESSIBLE, DRAM, DMA]
- Segment 3: len 0x99f14 load 0x400d0020 file_offs 0x00020018 [IROM]
- Segment 4: len 0x027f4 load 0x3ffb1c40 file_offs 0x000b9f34 [BYTE_ACCESSIBLE, DRAM, DMA]
- Segment 5: len 0x00404 load 0x40080000 file_offs 0x000bc730 [IRAM]
- Segment 6: len 0x16ffc load 0x40080404 file_offs 0x000bcb3c [IRAM]
- Checksum: f0 (valid)
- Validation Hash: b8fcd400f9a5e812ed271d18247ba8885570d373a692bfd80e3b11c00be44a8e (valid)
How can I control it?
When my project gets even bigger, can I expect 3 DRAM segments?
Ideally I would like to have one DRAM segment.
Thank you.