Search found 7 matches
- Sat Jun 19, 2021 7:00 pm
- Forum: Hardware
- Topic: Need guidelines: wiring and configuring an external 32Khz oscillator input in EDP-IDF
- Replies: 10
- Views: 20086
Re: Need guidelines: wiring and configuring an external 32Khz oscillator input in EDP-IDF
FYI, the relevant comments in Kconfig were changed a couple weeks after your question, so it looks like the hardware guide and code now agree that you should connect it to 32K_XN. https://github.com/espressif/esp-idf/commit/a50966cf7a9253fa1758e3927e0e2cd550ef8769 edit: However, they still disagree ...
- Wed Oct 28, 2020 4:42 am
- Forum: ESP-IDF
- Topic: IO pulled low when entering light sleep
- Replies: 1
- Views: 4515
Re: IO pulled low when entering light sleep
Try
This is needed because, by default, the RTC_PERIPH power domain (IO, sensors, ULP) will only be enabled if you're using one of them as a wakeup source.
Code: Select all
esp_sleep_pd_config(ESP_PD_DOMAIN_RTC_PERIPH, ESP_PD_OPTION_ON);
- Fri Apr 26, 2019 3:39 pm
- Forum: Hardware
- Topic: Using esptool.py with RTS/CTS instead of RTS/DTR
- Replies: 3
- Views: 11864
Re: Using esptool.py with RTS/CTS instead of RTS/DTR
So you want CTS/DTR instead of RTS/DTR? I can't test that easily here, but try the cts-dtr branch on github. Connect CTS to EN and DTR to IO0/BOOT.
Jim
Jim
- Wed Mar 06, 2019 9:02 pm
- Forum: General Discussion
- Topic: ibeacon Data, Data Logging
- Replies: 1
- Views: 3812
- Tue Jul 03, 2018 3:17 pm
- Forum: ESP-IDF
- Topic: WiFi disconnects every 110 seconds
- Replies: 1
- Views: 4274
Re: WiFi disconnects every 110 seconds
Sending continuous ping requests (every 1s) prevents the station from being disconnected, but I would prefer not to have to do this.
Explicitly calling esp_wifi_set_ps(WIFI_PS_NONE), rather than leaving at the default WIFI_PS_MIN_MODEM, does not help.
Any suggestions?
Explicitly calling esp_wifi_set_ps(WIFI_PS_NONE), rather than leaving at the default WIFI_PS_MIN_MODEM, does not help.
Any suggestions?
- Sat Jun 30, 2018 7:42 pm
- Forum: ESP-IDF
- Topic: WiFi disconnects every 110 seconds
- Replies: 1
- Views: 4274
WiFi disconnects every 110 seconds
I'm having a problem where my ESP32 disconnects from the WiFi access point after 110 seconds. It always reconnects just fine a few seconds later. The typical sequence is: Scan for APs, connect, immediately send a SNTP and HTTP request, get responses within a few seconds, then wait. After 110 seconds...
- Fri Jun 15, 2018 8:04 pm
- Forum: Hardware
- Topic: Using esptool.py with RTS/CTS instead of RTS/DTR
- Replies: 3
- Views: 11864
Using esptool.py with RTS/CTS instead of RTS/DTR
I have a FTDI USB-to-serial adapter that only brings out TX, RX, RTS, and CTS, so I hooked it up directly to the ESP32 as follows: RTS --> EN CTS --> IO0/BOOT TX --> RXD0 RX <-- TXD0 Then I wrote a esptool.py wrapper that makes it work, via libftdi & switching in and out of bitbang mode as needed: h...