Search found 10 matches
- Mon Jan 16, 2023 2:54 am
- Forum: General Discussion
- Topic: When does "Sec-WebSocket-Accept not found" occur?
- Replies: 0
- Views: 913
When does "Sec-WebSocket-Accept not found" occur?
I reset about 500 ESP32E and ESP32D at the same time. About 480 ESP32s were connected to the server normally, but about 10 to 20 ESP32s were unable to connect to the server for about 20 minutes. The ESP32s in question even succeeded in downloading data over an http connection, and then failed to con...
- Mon Nov 08, 2021 10:48 am
- Forum: ESP-IDF
- Topic: What is the power consumption when using Wi-Fi, Bluetooth, and ble mesh at the same time?
- Replies: 6
- Views: 4975
Re: What is the power consumption when using Wi-Fi, Bluetooth, and ble mesh at the same time?
Yes, I'm using the WROOM32D module. Power directly applies 5v. Well, there's your problem. While our devboards have an on-board LDO and can accept 5V on the designated input pin, the modules only work on a voltage range around 3.3V, and you run the risk of damaging it if you run it at 5V. Chances a...
- Mon Nov 08, 2021 4:07 am
- Forum: ESP-IDF
- Topic: What is the power consumption when using Wi-Fi, Bluetooth, and ble mesh at the same time?
- Replies: 6
- Views: 4975
Re: What is the power consumption when using Wi-Fi, Bluetooth, and ble mesh at the same time?
Are you using a WROOM32D module? Just checking: do you have a LDO or something that generates 3.3V in the power supply path, or are you feeding 5V directly into that module? Yes, I'm using the WROOM32D module. Power directly applies 5v. Only status LEDs are connected to the power line and there are...
- Fri Nov 05, 2021 7:36 am
- Forum: ESP-IDF
- Topic: What is the power consumption when using Wi-Fi, Bluetooth, and ble mesh at the same time?
- Replies: 6
- Views: 4975
Re: What is the power consumption when using Wi-Fi, Bluetooth, and ble mesh at the same time?
You didn't state what ESP32 module you were using. 5v @ 700ma is pretty high. How hot is your 3.3v onboard regulator getting, can you keep your finger on it ? I'm using esp32 WROOM 32D. The chip temperature was not high. It didn't matter if I touched it with my hands. Is there any possibility that ...
- Thu Nov 04, 2021 4:04 am
- Forum: ESP-IDF
- Topic: What is the power consumption when using Wi-Fi, Bluetooth, and ble mesh at the same time?
- Replies: 6
- Views: 4975
What is the power consumption when using Wi-Fi, Bluetooth, and ble mesh at the same time?
Hello In my project, esp32 is operated by freertos. At core 0, wifi, Bluetooth, and ble mesh are working, but sometimes mesh dies. One of the logs that appear at this time is "scan_evt timeout". Can I know what happened? Power sources are supplied at 5v, 700ma at smps. And is the smps in use running...
- Fri Jun 04, 2021 2:04 am
- Forum: ESP-IDF
- Topic: What is the subtype ESPHTTPD used for?
- Replies: 2
- Views: 3026
Re: What is the subtype ESPHTTPD used for?
Thank you for the information. Looking at the code, I think your comment is correct.phatpaul wrote: ↑Fri Jun 04, 2021 12:36 amMaybe it's for ESPFS? See the read-only filesystem https://github.com/jkent/libespfs
It used to be part of the libesphttpd project and has been split off into it's own module.
- Thu Jun 03, 2021 7:52 am
- Forum: ESP-IDF
- Topic: What is the subtype ESPHTTPD used for?
- Replies: 2
- Views: 3026
What is the subtype ESPHTTPD used for?
ESPHTTPD can be given to subtypes during partitioning of esp32. When to use this option?
- Wed Feb 24, 2021 9:25 am
- Forum: ESP-IDF
- Topic: Problems when using wear-leveling and http client together
- Replies: 4
- Views: 3434
Re: Problems when using wear-leveling and http client together
ESP_ERR_NO_MEM strongly indicates that you're using too much memory, and either mounting a filesystem or starting a https connection cannot be done anymore as there's no memory left. Thank you.. I found the problem.. I should have been suspicious when the memory error came out.. Memory management i...
- Wed Feb 24, 2021 8:02 am
- Forum: ESP-IDF
- Topic: Problems when using wear-leveling and http client together
- Replies: 4
- Views: 3434
Re: Problems when using wear-leveling and http client together
Those two have very little to do with eachother. What error do you get specifically? When the code is executed in the order of 1. http client open 2. fat spiflash mount the log is I (3674) MAIN: Charger Firmware Download To HTTPS I (4900) MAIN: HTTPS OPEN. I (4900) MAIN: Mounting FAT filesystem E (...
- Wed Feb 24, 2021 4:32 am
- Forum: ESP-IDF
- Topic: Problems when using wear-leveling and http client together
- Replies: 4
- Views: 3434
Problems when using wear-leveling and http client together
Hi everyone. I want to save the file I receive from http in real time in flash memory as wear-leveling. However, when connecting with esp_vfs_fat_spiflash_mount and esp_http_client_open, only the one executed first works. I think this problem is caused by using the same line. Is there any way to sol...