Search found 11 matches

by RathiSonika
Mon Sep 02, 2024 11:02 am
Forum: ESP-IDF
Topic: ESP_ERR_NVS_NOT_FOUND while trying to open nvs partition after provisioning
Replies: 1
Views: 1006

Re: ESP_ERR_NVS_NOT_FOUND while trying to open nvs partition after provisioning

Hi, the issue isn't fully clear based on the current description. Could you please share your custom or modified code to help us better understand the issue?
by RathiSonika
Tue Jun 25, 2024 7:40 am
Forum: ESP-IDF
Topic: ESP32-C6 SD card support for 64GB
Replies: 2
Views: 2118

Re: ESP32-C6 SD card support for 64GB

Hello, Yes, you can use a 64GB SD card with the ESP32-C6. You can use it on the SPI interface. Please refer to this example: https://github.com/espressif/esp-idf/tree/master/examples/storage/sd_card/sdspi . Using exFAT requires purchasing a license from Microsoft, and we do not support exFAT in IDF....
by RathiSonika
Mon Jun 03, 2024 7:11 am
Forum: ESP-IDF
Topic: esp_vfs.h: No such file or directory
Replies: 1
Views: 667

Re: esp_vfs.h: No such file or directory

I'm not sure why you're adding the esp_vfs.h file to the `esp-idf\components\spi_flash\sim\stubs\vfs\include` directory. It is present at `esp-idf/components/vfs/include/esp_vfs.h`. However regarding the "esp_vfs.h: No such file or directory" issue, you need to include the `spi_flash\sim\stubs\vfs\i...
by RathiSonika
Wed Apr 24, 2024 8:00 am
Forum: ESP-IDF
Topic: [Solved] sdCard (sdmmc / 1 bit mode) memory leak (16-28 bytes) on 2nd unmount
Replies: 2
Views: 613

Re: sdCard (sdmmc / 1 bit mode) memory leak (16-28 bytes) on 2nd unmount

Hi @plusorc, Could you please try the same example on IDF v5.2? The issue you are facing has already been addressed in this version.
by RathiSonika
Wed Jan 31, 2024 11:05 am
Forum: ESP-IDF
Topic: Esp32S3 : Why time to write in Flash is so long ? Help !
Replies: 7
Views: 1588

Re: Esp32S3 : Why time to write in Flash is so long ? Help !

Question 2 : Have you already managed to flush the things you had writen in a file without closing it (Using FAT FileSystem and VFS component) ? This would enable me to write things in my file without opening and closing it. => Maybe it would be faster ? You can check a config option called "Enable...
by RathiSonika
Tue Jan 30, 2024 12:29 pm
Forum: ESP-IDF
Topic: Erase size not set for external chip in esp_partition_register_external
Replies: 1
Views: 700

Re: Erase size not set for external chip in esp_partition_register_external

Hi, I'm not sure why you need to know the erase_size for using LFS. Check out the IDF examples at https://github.com/espressif/esp-idf/tr ... lash_fatfs and https://github.com/espressif/esp-idf/tr ... e/littlefs – it should help.
by RathiSonika
Mon Nov 27, 2023 8:46 am
Forum: General Discussion
Topic: Flash Encryption for Only one data partition
Replies: 1
Views: 3764

Re: Flash Encryption for Only one data partition

Hello, Yes you can enable flash encryption for single partition by adding encrypted flag for respective partition in partition table.
Please refer this for more details: https://docs.espressif.com/projects/esp ... ition-flag
by RathiSonika
Fri Oct 27, 2023 11:56 am
Forum: ESP-IDF
Topic: Reducing VFS/FATFS Memory Usage
Replies: 1
Views: 909

Re: Reducing VFS/FATFS Memory Usage

Hello @akolodner25, the memory allocated by the function 'esp_vfs_fat_register' is utilized to store the FAT context, which serves as essential metadata required for the file system. This is the minimum memory requirement for any scenario.
by RathiSonika
Thu Aug 17, 2023 7:16 am
Forum: General Discussion
Topic: ESP32-S3 SDIO Connection
Replies: 1
Views: 952

Re: ESP32-S3 SDIO Connection

The example at https://github.com/espressif/esp-idf/tree/master/examples/storage/sd_card/sdmmc shows you how to set SDIO the pins. Also on ESP32-S3, any available I/Os which is not used for other purposes can be used for SDMMC peripheral. The driver will use the GPIO matrix to route the I/Os to the ...
by RathiSonika
Tue Jul 18, 2023 11:59 am
Forum: ESP-IDF
Topic: External SPI RAM and eMMC on ESP32-S3
Replies: 6
Views: 3053

Re: External SPI RAM and eMMC on ESP32-S3

Well, I did not get your exact question, can you please explain it again?
If you want to use 16GB eMMC for storing data along with 1GB external RAM then it’s possible.
But if you want to use 16GB eMMC as external RAM then it’s not possible.