Hi, I would want to see what’s the maximum capacity of the MicroSD card to stay completely compatible with the ESP- 32 CAM specifications 32 Gb. further than 32Gb? Thank you for your answer, Nidhi Singh
Hi,
I would want to see what’s the maximum capacity of the MicroSD card to stay completely compatible with the ESP- 32 CAM specifications 32 Gb. further than 32Gb?
Thank you for your answer,
Nidhi Singh
Hello Nidhi, Above 32 GB, the card has to be formatted applying the exFAT filesystem. exFAT is supported in IDF through the FatFS library, but the support is disabled by default. You can modify #defineFF_FS_EXFAT 0 in ffconf.h from 0 to 1, and also rebuild the operation. Thank You
Hello Nidhi,
Above 32 GB, the card has to be formatted applying the exFAT filesystem.
exFAT is supported in IDF through the FatFS library, but the support is disabled by default. You can modify #defineFF_FS_EXFAT 0 in ffconf.h from 0 to 1, and also rebuild the operation.
Thank You
See less