Search found 30 matches

by vritzka
Fri Jan 31, 2025 5:02 pm
Forum: ESP-IDF
Topic: Help with HTTP_EVENT_DISCONNECTED
Replies: 2
Views: 2178

Re: Help with HTTP_EVENT_DISCONNECTED

For anyone else struggling with this, keep in mind that most logs in the example are ESP_LOGD, which are not printed on standard log level settings. Replace with ESP_LOGI or change log level to see them.
by vritzka
Thu Nov 28, 2024 8:21 pm
Forum: Hardware
Topic: GPIO0 floating on ESP32-S3 Wroover…why does it go into USB Download?
Replies: 8
Views: 2898

Re: GPIO0 floating on ESP32-S3 Wroover…why does it go into USB Download?

When I disable Download mode via efuse, would the device boot when pins are set to download mode? Or would it print an error and stop? IMG_3291.jpeg Or Could I perhaps change the flash wait time to 0 so the chip will not check for pins? Or set a long wait time to give gpio0 time to go high? IMG_3292...
by vritzka
Thu Nov 28, 2024 9:52 am
Forum: Hardware
Topic: GPIO0 floating on ESP32-S3 Wroover…why does it go into USB Download?
Replies: 8
Views: 2898

Re: GPIO0 floating on ESP32-S3 Wroover…why does it go into USB Download?

IMG_3285.jpeg
IMG_3285.jpeg (146.27 KiB) Viewed 2351 times
IMG_3286.jpeg
IMG_3286.jpeg (41.3 KiB) Viewed 2351 times
IMG_3287.jpeg
IMG_3287.jpeg (238.1 KiB) Viewed 2344 times
by vritzka
Thu Nov 28, 2024 2:57 am
Forum: Hardware
Topic: GPIO0 floating on ESP32-S3 Wroover…why does it go into USB Download?
Replies: 8
Views: 2898

Re: GPIO0 floating on ESP32-S3 Wroover…why does it go into USB Download?

Ok.

Do you think the floating GPIO0 is the problem? Maybe the internal pull-up is not enough?
by vritzka
Wed Nov 27, 2024 12:42 pm
Forum: Hardware
Topic: GPIO0 floating on ESP32-S3 Wroover…why does it go into USB Download?
Replies: 8
Views: 2898

GPIO0 floating on ESP32-S3 Wroover…why does it go into USB Download?

My device (with ESP32-S3) sometimes doesn’t boot normally. It goes into USB Download mode and waits. So my device doesn’t power on. It happens randomly. I reboot 10 times and it happens maybe 1 time. Unfortunately I left GPIO0 floating. It has a 5cm PCB trace on it, going to the programming header. ...
by vritzka
Mon Nov 18, 2024 12:54 pm
Forum: Hardware
Topic: ESP32-s3 Wroom sometimes doesn't start up
Replies: 2
Views: 1412

Re: ESP32-s3 Wroom sometimes doesn't start up

Will do, thanks
by vritzka
Mon Nov 18, 2024 6:37 am
Forum: Hardware
Topic: ESP32-s3 Wroom sometimes doesn't start up
Replies: 2
Views: 1412

ESP32-s3 Wroom sometimes doesn't start up

Hi, I built a hardware product that every now and then doesn't boot. People then powercycle it and eventually it starts. When checked the logs of the ESP32-S3 during boot, it stopps right after this message: cpu_start: Multicore app So far I deactivated 'Bootloader log verbosity' to 'no output'. Any...
by vritzka
Fri Dec 01, 2023 7:31 am
Forum: ESP-IDF
Topic: Zigbee: Why does my Temperature Sensor not obey my commands?
Replies: 0
Views: 4307

Zigbee: Why does my Temperature Sensor not obey my commands?

Hi, I am trying to make temperature sensors work on ESP32S3 + ESP32-C6. The sensor is a TUYA Zigbee The manufacturer gives some information here . After binding the sensor to my network, I am telling it to occasionally report with this command: esp_zb_zcl_config_report_cmd_t report_cmd; uint8_t repo...
by vritzka
Thu Sep 14, 2023 4:25 am
Forum: General Discussion
Topic: Calling gptimer_start() from ISR crashes. Why?
Replies: 3
Views: 2990

Re: Calling gptimer_start() from ISR crashes. Why?

I solved it by using the High Resolution timer like: const esp_timer_create_args_t oneshot_timer_args = { .callback = &oneshot_timer_callback, .name = "one-shot" }; ESP_ERROR_CHECK(esp_timer_create(&oneshot_timer_args, &oneshot_timer)); esp_timer_start_once(oneshot_timer, 10000); static void oneshot...