Search found 6 matches
- Mon Nov 30, 2020 11:53 am
- Forum: General Discussion
- Topic: FATFS memory leak when calling fopen
- Replies: 0
- Views: 1819
FATFS memory leak when calling fopen
Hi everyone, I have implemented a FATFS for a partition on my flash memory and have been observing a strange behavior after awhile where I can no longer create a file using the command fopen(filepath, "wb"). The call to fopen returns null and the error code is 2. Calling perror("error") returns: Err...
- Mon Nov 02, 2020 6:55 am
- Forum: General Discussion
- Topic: Websocket with client authentication (mutual SSL)
- Replies: 1
- Views: 3426
Re: Websocket with client authentication (mutual SSL)
Hi there,
Were you able to find a way to get websockets working with client authentication using the ESP websocket client?
Even in ESP-IDF 4.1 the struct esp_websocket_client_config_t does not have a way to configure the client certificate and key for verification by the server.
Best regards
Were you able to find a way to get websockets working with client authentication using the ESP websocket client?
Even in ESP-IDF 4.1 the struct esp_websocket_client_config_t does not have a way to configure the client certificate and key for verification by the server.
Best regards
- Wed Sep 23, 2020 5:48 am
- Forum: ESP-IDF
- Topic: FATFS Encryption
- Replies: 0
- Views: 1679
FATFS Encryption
Hi Everyone, I was wondering if someone could confirm that the FATFS on the ESP32 Supports the flash encryption mechanism defined here https://docs.espressif.com/projects/esp-idf/en/latest/esp32/security/flash-encryption.html When I read version 3.2.3 of the documents it mentions the following: http...
- Wed Sep 23, 2020 5:38 am
- Forum: General Discussion
- Topic: ESP32 custom partition table.
- Replies: 3
- Views: 4143
Re: ESP32 custom partition table.
Could you provide some snippets of the code? Perhaps it is just me but I dont have the full picture.
- Sun Sep 20, 2020 3:47 pm
- Forum: ESP-IDF
- Topic: FAT FS Maximum number of files
- Replies: 3
- Views: 4898
Re: FAT FS Maximum number of files
Thanks for the response everyone.
You were precisely right, it seems that the limit on the root directory is 512. Once I created a sub-directory, I was not limited anymore.
You were precisely right, it seems that the limit on the root directory is 512. Once I created a sub-directory, I was not limited anymore.
- Sat Sep 19, 2020 7:08 am
- Forum: ESP-IDF
- Topic: FAT FS Maximum number of files
- Replies: 3
- Views: 4898
FAT FS Maximum number of files
Hi everyone I am pretty new to the ESP32 and I have been experimenting with a persistent storage mechanism. Because I intend to use flash encryption eventually, I have been testing a FAT file system although at this stage I have not actually turned it on in the compile options. While using the examp...