Search found 42 matches
- Mon Mar 14, 2022 11:11 am
- Forum: ESP-IDF
- Topic: Looking for a httpd_sock_err list.
- Replies: 0
- Views: 1434
Looking for a httpd_sock_err list.
I'm getting a httpd_sock_err 104 and 128 when calling httpd_resp_send_chunk(). Unfortunately I don't know what 104 or 128 refer to. Is there a list somewhere that lists all the httpd_sock_err errors?
- Tue Feb 15, 2022 12:51 pm
- Forum: ESP-IDF
- Topic: Build macro to identify chip
- Replies: 3
- Views: 3789
Re: Build macro to identify chip
Is there a list of CONFIG_IDF_TARGET_ESP32 defines for other chips (like s3, 8266, etc...)?
- Mon Feb 14, 2022 1:20 pm
- Forum: ESP-IDF
- Topic: Build macro to identify chip
- Replies: 3
- Views: 3789
Build macro to identify chip
Is there a macro to identify which chip an application if being built for. Something like 'ESP32' or 'ESP32s3'??
- Fri Jan 14, 2022 10:39 am
- Forum: Report Bugs
- Topic: Watchdog restart when calling esp_wifi_connect() and mutex's
- Replies: 0
- Views: 7380
Watchdog restart when calling esp_wifi_connect() and mutex's
I have a weird bug, basically this: std::mutex silly_mutex; { std::lock_guard<std::mutex> lock{ silly_mutex }; } esp_wifi_connect(); { std::lock_guard<std::mutex> lock{ silly_mutex }; } Will cause a watch-dog timer reset. I don't know what it is, but locking a mutex (any mutex) right after esp_wifi_...
- Sat Jan 08, 2022 4:40 pm
- Forum: General Discussion
- Topic: Is adc_gpio_init() being deprecated?
- Replies: 3
- Views: 11374
Re: Is adc_gpio_init() being deprecated?
Thank-you, that's what I needed to know.
- Fri Jan 07, 2022 7:47 pm
- Forum: General Discussion
- Topic: Is adc_gpio_init() being deprecated?
- Replies: 3
- Views: 11374
- Tue Dec 28, 2021 7:12 am
- Forum: General Discussion
- Topic: Is adc_gpio_init() being deprecated?
- Replies: 3
- Views: 11374
Is adc_gpio_init() being deprecated?
What happened to adc_gpio_init()? I don't see it in latest ESP IDF documentation, nor it is used in the example code. There's no discussion (that I can find anywhere) explaining why it was removed and what replaces it. In fact there's a lot of functions/functionality in the newest ADC page (https://...
- Thu Oct 14, 2021 9:53 am
- Forum: General Discussion
- Topic: AHP or APB??
- Replies: 5
- Views: 6561
Re: AHP or APB??
Appreciate the info.
- Wed Oct 06, 2021 6:10 pm
- Forum: General Discussion
- Topic: AHP or APB??
- Replies: 5
- Views: 6561
Re: AHP or APB??
Anyone??
- Sat Oct 02, 2021 3:33 pm
- Forum: General Discussion
- Topic: AHP or APB??
- Replies: 5
- Views: 6561
AHP or APB??
In the ESP32 TRM we have a description of the AHP bus: The CPU can access peripherals via DPORT address more efficiently than via AHB address. However, DPORT address is characterized by speculative reads, which means it cannot guarantee that each read is valid. In addition, DPORT address will upset ...