Search found 24 matches
- Mon Nov 18, 2024 12:54 pm
- Forum: Hardware
- Topic: ESP32-s3 Wroom sometimes doesn't start up
- Replies: 2
- Views: 553
Re: ESP32-s3 Wroom sometimes doesn't start up
Will do, thanks
- Mon Nov 18, 2024 6:37 am
- Forum: Hardware
- Topic: ESP32-s3 Wroom sometimes doesn't start up
- Replies: 2
- Views: 553
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...
- Fri Dec 01, 2023 7:31 am
- Forum: ESP-IDF
- Topic: Zigbee: Why does my Temperature Sensor not obey my commands?
- Replies: 0
- Views: 3965
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...
- Thu Sep 14, 2023 4:25 am
- Forum: General Discussion
- Topic: Calling gptimer_start() from ISR crashes. Why?
- Replies: 3
- Views: 2430
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...
- Thu Sep 14, 2023 12:33 am
- Forum: General Discussion
- Topic: Calling gptimer_start() from ISR crashes. Why?
- Replies: 3
- Views: 2430
Re: Calling gptimer_start() from ISR crashes. Why?
Thank you! It still doesn't work tho :) I changed my ISR. And also just used the global var. Screenshot 2023-09-14 at 8.29.36 am.png Then I moved the ISR out of the IRAM. No avail. Maybe my interrupts are coming in too fast at 10HZ? Perhaps something to do with stack rise of interrupts? Any other id...
- Wed Sep 13, 2023 9:35 am
- Forum: General Discussion
- Topic: Calling gptimer_start() from ISR crashes. Why?
- Replies: 3
- Views: 2430
Calling gptimer_start() from ISR crashes. Why?
Hello, I just spent 4 hrs trying to figure this out, but I don't know why my code crashes. Could someone please have a look? I have a Pulsecounter running, reading pulses from GPIO21. Also on GPIO21 is an Interrupt (positive edge). The interrupt handler is supposed to start a timer. However, I canno...
- Wed Jul 26, 2023 12:10 pm
- Forum: ESP IoT Solution
- Topic: Zigbee with ESP32-S3 & ESP32-C6
- Replies: 0
- Views: 31525
Zigbee with ESP32-S3 & ESP32-C6
Hello, I understand that for Zigbee, we need Wifi 802.15.4. I would combine my ESP32-S3 with an ESP32-C6. However, the documentation only ever mentions the ESP32-H2 for Zigbee. But this modul is not yet available. Can use the C6 instead of the H2? 405F0636-20E6-44A1-A177-4714937FB4FD.jpeg Thank you
- Tue Mar 28, 2023 1:38 am
- Forum: General Discussion
- Topic: How can I terminate FreeRTOS tasks and get the memory back?
- Replies: 4
- Views: 3193
How can I terminate FreeRTOS tasks and get the memory back?
Hello, I am running 2 tasks on my ESP32-S3 - Graphics Task - Sensor Task But when I start WIFI and add an Over-the-air update Task, the system runs out of memory. I get strange errors like: I (13590) esp_https_ota: Starting OTA... I (13590) esp_https_ota: Writing to partition subtype 16 at offset 0x...
- Fri Dec 16, 2022 8:43 am
- Forum: ESP32 Arduino
- Topic: Octal Flash option selected, but EFUSE not configured!
- Replies: 1
- Views: 2992
Octal Flash option selected, but EFUSE not configured!
Hello,
when I chose Flash Mode --> OPI 80MHZ, the ESP32-S3 N8R8 reboots and I throws this error message:
Can somebody tell me what I need to configure on the EFUSE to get the Octal speed PSRAM working?
Thanks!
when I chose Flash Mode --> OPI 80MHZ, the ESP32-S3 N8R8 reboots and I throws this error message:
Octal Flash option selected, but EFUSE not configured!
Can somebody tell me what I need to configure on the EFUSE to get the Octal speed PSRAM working?
Thanks!
- Mon Nov 07, 2022 2:31 am
- Forum: ESP32 Arduino
- Topic: ESP32 + TFT not working - Screen Blank - Help!
- Replies: 3
- Views: 3473
Re: ESP32 + TFT not working - Screen Blank - Help!
The screen backlight should glow up as soon as you connect 3.3 V and ground.
Since its an LED, you need to connect it through a resistor (100 OHM would work).
It seems there is no resistor now. So maybe the high current draw makes the ESP32 turn off and thats why it doesn't work.
Since its an LED, you need to connect it through a resistor (100 OHM would work).
It seems there is no resistor now. So maybe the high current draw makes the ESP32 turn off and thats why it doesn't work.