Thank you so much!!! It works!!!
Search found 4 matches
- Tue Oct 27, 2020 1:51 pm
- Forum: ESP-IDF
- Topic: Unwanted messages when initializing Wifi
- Replies: 2
- Views: 387
- Fri Oct 23, 2020 1:33 pm
- Forum: ESP-IDF
- Topic: Undefined reference to f_gets/f_puts error
- Replies: 3
- Views: 872
Re: Undefined reference to f_gets/f_puts error
Now it's clear! Thank you, ESP_Igrr!!
- Fri Oct 23, 2020 1:13 pm
- Forum: ESP-IDF
- Topic: Unwanted messages when initializing Wifi
- Replies: 2
- Views: 387
Unwanted messages when initializing Wifi
Hi all! We use ESP32 and ESP-IDV v4.0 in our project. During WiFI initialization, unwanted messages are printed in UART0: I (15227) wifi:wifi driver task: 3ffe7c0c, prio:23, stack:6656, core=1 I (15241) wifi:wifi firmware version: aa5336b I (15241) wifi:config NVS flash: enabled I (15241) wifi:confi...
- Mon Aug 31, 2020 11:19 am
- Forum: ESP-IDF
- Topic: Undefined reference to f_gets/f_puts error
- Replies: 3
- Views: 872
Undefined reference to f_gets/f_puts error
Hi to All! I have an ESP-IDF project contained f_open(..) and f_puts(..)/f_gets(..). Here is the part of my code: if(f_open(&fil, u8GlobalNameOfFileName, FA_READ) == FR_OK) { f_gets(fileText, sizeof(FirstTextInCsv), &fil); if(strcmp(fileText,FirstTextInCsv) == false) { PRINTF("The flash was populate...