ESP32 Flash memory usage

Hello,
I am working on ESP32-S3-DevKitC-1 board, with module ESP32-S3-WROOM-2, MON32R8V.
When I use esptool.py to identify the board it says as below.
image
But when I compile code the result shows
image
Please tell me what might be the reason why Flash usage is 91.3% from 1048576 bytes, while I have 32MB actual flash.
Do I need to configure in the board json file, or platformio.ini file. If yes, please tell me where can I find documentation for settings accordingly.

Thank you.
Lhagva

Please read Partition Tables - ESP32 - — ESP-IDF Programming Guide latest documentation and Espressif 32 — PlatformIO latest documentation to understand the topics “Flash Layout” and “Partition Table” to understand why 1. you can’t use the entire physical flash chip for only your firmware application and 2. how to configure a partition table that gives your firmware application a larger part of flash. This is a very often recurring topic.