Search found 42 matches

by Kaisha
Mon Mar 14, 2022 11:11 am
Forum: ESP-IDF
Topic: Looking for a httpd_sock_err list.
Replies: 0
Views: 1103

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?
by Kaisha
Tue Feb 15, 2022 12:51 pm
Forum: ESP-IDF
Topic: Build macro to identify chip
Replies: 3
Views: 2726

Re: Build macro to identify chip

Is there a list of CONFIG_IDF_TARGET_ESP32 defines for other chips (like s3, 8266, etc...)?
by Kaisha
Mon Feb 14, 2022 1:20 pm
Forum: ESP-IDF
Topic: Build macro to identify chip
Replies: 3
Views: 2726

Build macro to identify chip

Is there a macro to identify which chip an application if being built for. Something like 'ESP32' or 'ESP32s3'??
by Kaisha
Fri Jan 14, 2022 10:39 am
Forum: Report Bugs
Topic: Watchdog restart when calling esp_wifi_connect() and mutex's
Replies: 0
Views: 6548

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_...
by Kaisha
Sat Jan 08, 2022 4:40 pm
Forum: General Discussion
Topic: Is adc_gpio_init() being deprecated?
Replies: 3
Views: 10286

Re: Is adc_gpio_init() being deprecated?

Thank-you, that's what I needed to know.
by Kaisha
Fri Jan 07, 2022 7:47 pm
Forum: General Discussion
Topic: Is adc_gpio_init() being deprecated?
Replies: 3
Views: 10286

Re: Is adc_gpio_init() being deprecated?

Anyone??
by Kaisha
Tue Dec 28, 2021 7:12 am
Forum: General Discussion
Topic: Is adc_gpio_init() being deprecated?
Replies: 3
Views: 10286

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://...
by Kaisha
Thu Oct 14, 2021 9:53 am
Forum: General Discussion
Topic: AHP or APB??
Replies: 5
Views: 5161

Re: AHP or APB??

Appreciate the info.
by Kaisha
Wed Oct 06, 2021 6:10 pm
Forum: General Discussion
Topic: AHP or APB??
Replies: 5
Views: 5161

Re: AHP or APB??

Anyone??
by Kaisha
Sat Oct 02, 2021 3:33 pm
Forum: General Discussion
Topic: AHP or APB??
Replies: 5
Views: 5161

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 ...