Search found 4 matches

by ZarZar
Wed Jun 12, 2024 6:09 am
Forum: General Discussion
Topic: file names changed with tilda "~"
Replies: 6
Views: 1578

Re: file names changed with tilda "~"

Hi There,

the new version ESP-IDF 5.2.1 solved my problem with files on FAT.
The file names are now preserved.

Thanks
by ZarZar
Thu Mar 14, 2024 7:46 am
Forum: General Discussion
Topic: file names changed with tilda "~"
Replies: 6
Views: 1578

Re: file names changed with tilda "~"

I'm using ESP-IDF version 5.0.4.

I will try to update to 5.2 and report back.
by ZarZar
Mon Mar 11, 2024 7:07 am
Forum: General Discussion
Topic: file names changed with tilda "~"
Replies: 6
Views: 1578

Re: file names changed with tilda "~"

Support for long filenames in FAT in menuconfig is turned on. 4 files are placed on the FAT : index.html /assets/react-CHdo91hT.svg /assets/index-DiwrgTda.css /assets/index-MJNRYYyu.js CMakeList.txt : fatfs_create_rawflash_image(storage ../site/dist FLASH_IN_PROJECT) Listing from FAT /store/assets i...
by ZarZar
Fri Mar 08, 2024 9:54 am
Forum: General Discussion
Topic: file names changed with tilda "~"
Replies: 6
Views: 1578

file names changed with tilda "~"

Hi There, I have been trying to write to flash. I have the following entry in my CMakeLists.txt fatfs_create_rawflash_image(storage ../site/dist FLASH_IN_PROJECT) One of the files I have is named index -DiwrgTda.css I use the following code to enumerate through the files. DIR *d; struct dirent *dir;...