Well, new Desktop arrived, it works perfectly.
Damned, those mysterious bugs no one would ever find.....
Search found 10 matches
- Fri Oct 04, 2024 4:04 pm
- Forum: ESP-IDF
- Topic: Can't flash my ESP32 - Not beginner
- Replies: 5
- Views: 2447
- Mon Sep 30, 2024 9:02 pm
- Forum: ESP-IDF
- Topic: Can't flash my ESP32 - Not beginner
- Replies: 5
- Views: 2447
Re: Can't flash my ESP32 - Not beginner
After having been busy otherwise I came back on this issue. So: excat same hardware (same board, same USB cable) just doesn't work on my desptop anymore but perfectly does on my laptop. Same Windows 11, same FTDI driver, same VSC, same ESP IDF... I can communicate with my board from the desktop usin...
- Wed Jul 31, 2024 7:46 am
- Forum: ESP-IDF
- Topic: Can't flash my ESP32 - Not beginner
- Replies: 5
- Views: 2447
Re: Can't flash my ESP32 - Not beginner
Hi Roland Thanks for helping! So, yeah pulling GPIO0 low manually helps a little but not entirely. Note: it's my own hardware, used the transitor scheme to handle RTS/DTR and RST from UART chip as on the ESP32 demo boards. It goes a bit further but still doesn't succeed: esptool.py v4.8.dev4 Serial ...
- Wed Jul 31, 2024 6:23 am
- Forum: ESP-IDF
- Topic: Can't flash my ESP32 - Not beginner
- Replies: 5
- Views: 2447
Can't flash my ESP32 - Not beginner
Hello there After a break of a couple of months I came back to do firmware developement and big surprise can't flash my ESP32. At least on my desktop. Still works on my laptop. So: - I rather think it is not a hardware issue since it works on my laptop. - It is not a USB HUB in between. - Tried diff...
- Wed Aug 23, 2023 12:59 pm
- Forum: ESP-IDF
- Topic: Issue on esp_eth_mac.h
- Replies: 1
- Views: 914
Issue on esp_eth_mac.h
Hi there, using the ESP32 internal EMAC controller (ESP IDF 5.1) I make use of the eth_esp32_emac_config_t esp32_emac_config = ETH_ESP32_EMAC_DEFAULT_CONFIG(); but it leads to a compiler error saying the eth_esp32_emac_config_t is undifined, which is not true, at least not as straight forward as one...
- Thu May 25, 2023 10:19 am
- Forum: Hardware
- Topic: Compatible Ethernet PHY Chips ESP32
- Replies: 2
- Views: 3897
Re: Compatible Ethernet PHY Chips ESP32
Just spent 1h looking for the same, once more, shame on Espressif with its poor documentation... It might be late for you but maybe helpful for others, i managed to find some minor info: in the ESP IDF Programming Guide, go to API reference then Networking , then Ethernet then scroll to (or ctrl + f...
- Tue Jul 05, 2022 7:48 am
- Forum: General Discussion
- Topic: ESP_LOG(I/W/E) vs printf for debug
- Replies: 6
- Views: 24290
Re: ESP_LOG(I/W/E) vs printf for debug
I also figured out that printf can get buggy. I regularly miss text from a printf, partially or even totally while this seems to never happen on the ESP_LOGx ; I suppose this is related to thread behavior, printf most likely isn't thread safe whereas ESP_LOGx looks like to be.
- Thu Jun 16, 2022 10:36 am
- Forum: ESP-IDF
- Topic: scanf() rush through
- Replies: 1
- Views: 1652
scanf() rush through
Hi there, I thought to use the scanf() function to get the user's choice from a displayed menu over the UART0 but it doesn't stop at the scanf() function to wait for a user input... and simply rushes endlessly the while(1) loop executing the default from the switch case. Why? I went through this int...
- Thu Jun 16, 2022 8:49 am
- Forum: ESP-IDF
- Topic: ESPLOG and UART0 coexistance for own use
- Replies: 3
- Views: 2202
Re: ESPLOG and UART0 coexistance for own use
Hi, just to print some information or give a little service interface over it. I'm wondering, why is the UART0 not active (when calling uart_is_driver_installed(...) ) unless installing myself the driver prior? I thought it would have been already done by the ESP IDF, since the ESP_LOG system uses t...
- Wed Jun 15, 2022 9:11 am
- Forum: ESP-IDF
- Topic: ESPLOG and UART0 coexistance for own use
- Replies: 3
- Views: 2202
ESPLOG and UART0 coexistance for own use
Hi there, I'm looking for an information I couldn't find after an hour of investigating. The EPSLOG uses by default the UART0 which also is the only UART on the board I've to dev for. Is it possible to also use the UART0 for our own purpose besides the ESPLOG? I played a bit with the UART functions ...