Search found 8 matches
- Tue Nov 01, 2022 12:45 pm
- Forum: General Discussion
- Topic: Application binary need to fill with pre-fill data for unused area during generation
- Replies: 1
- Views: 1744
Re: Application binary need to fill with pre-fill data for unused area during generation
any update on this topic?
- Tue Nov 01, 2022 12:37 pm
- Forum: General Discussion
- Topic: ESP32-S3: variable(flag) in fixed location of ROM and RAM memory
- Replies: 3
- Views: 2566
Re: ESP32-S3: variable(flag) in fixed location of ROM and RAM memory
Example 1: in our project, internal flash - 8MB - esp32-s3-Fn8 external flash - 16MB - Winbond. During every startup around 32kb of content need to copy from external flash to internal flash(so, here need to allocate 32kb memory in internal flash with fixed location) Example 2: We need calculate che...
- Tue Nov 01, 2022 7:38 am
- Forum: General Discussion
- Topic: ESP32-S3: variable(flag) in fixed location of ROM and RAM memory
- Replies: 3
- Views: 2566
ESP32-S3: variable(flag) in fixed location of ROM and RAM memory
Hello Team,
How can i add variable(flag) in fixed location of ROM and RAM. Any sample for customized linker and CMake files
How can i add variable(flag) in fixed location of ROM and RAM. Any sample for customized linker and CMake files
- Mon Oct 17, 2022 1:39 pm
- Forum: General Discussion
- Topic: ESP Flash Erase Block
- Replies: 4
- Views: 2117
Re: ESP Flash Erase Block
Our hardware: eSP32-S3-FN8
- Mon Oct 17, 2022 8:03 am
- Forum: General Discussion
- Topic: ESP Flash Erase Block
- Replies: 4
- Views: 2117
Re: ESP Flash Erase Block
In Customized bootloader, The below test code esp_err_t err = esp_rom_spiflash_erase_block(0x13); if(ESP_ROM_SPIFLASH_RESULT_OK == err) { ESP_LOGI(TAG, "flash erase successfull"); } { ESP_LOGI(TAG, "flash erase not not successfull"); } err = esp_rom_spiflash_write(0x130000, data, strlen(data)); Why ...
- Sun Oct 16, 2022 5:36 pm
- Forum: General Discussion
- Topic: Application binary need to fill with pre-fill data for unused area during generation
- Replies: 1
- Views: 1744
Application binary need to fill with pre-fill data for unused area during generation
Hi Team,
During Application and bootloader binary file generation, unused part of allocation need to fill with pre-fill values(0xFF or 0x00).
Example: Application ROM allocated 1MB, but really used 512KB then remaining 512KB need to fill with pre-fill values.
During Application and bootloader binary file generation, unused part of allocation need to fill with pre-fill values(0xFF or 0x00).
Example: Application ROM allocated 1MB, but really used 512KB then remaining 512KB need to fill with pre-fill values.
- Sun Oct 16, 2022 5:33 pm
- Forum: General Discussion
- Topic: ESP Flash Erase Block
- Replies: 4
- Views: 2117
ESP Flash Erase Block
Hi Team, In my project, Application start with 0x30000 with 1MB size Backup application start with 0x130000 with 1MB. Here, During my Implementation, I try to erase 13th block start of backup application, Once I triggered this erase command from bootloader after system continues reset. Even chip ful...
- Thu Oct 13, 2022 9:27 am
- Forum: General Discussion
- Topic: Customized secondary bootloader SPI interfaces for External flash access
- Replies: 0
- Views: 624
Customized secondary bootloader SPI interfaces for External flash access
Hi Team,
We need to access external flash in customized bootloader(read/write/Init) through SPI 2 interfaces.
Chip: Esp32-S3-FN8
External Flash: WINBOND 16MB
We need to access external flash in customized bootloader(read/write/Init) through SPI 2 interfaces.
Chip: Esp32-S3-FN8
External Flash: WINBOND 16MB