Search found 10 matches
- Mon Aug 11, 2025 8:43 am
- Forum: ESP-IDF
- Topic: ESP32 kernel hang
- Replies: 6
- Views: 186
Re: ESP32 kernel hang
Could you please check and try to use vTaskDelay([at least one tick]) in loops?
In FreeRTOS, it says to scheduler that "not to switch to this task for this number of ticks". As well, it lets the scheduler to switch to another tasks and handle them correctly
All my tasks have a section of code ...
- Mon Aug 11, 2025 8:23 am
- Forum: ESP-IDF
- Topic: ESP32 kernel hang
- Replies: 6
- Views: 186
Re: ESP32 kernel hang
Could you please check and try to use vTaskDelay([at least one tick]) in loops?
In FreeRTOS, it says to scheduler that "not to switch to this task for this number of ticks". As well, it lets the scheduler to switch to another tasks and handle them correctly
I do a forced reboot of the MС inside ...
- Mon Aug 11, 2025 8:19 am
- Forum: ESP-IDF
- Topic: ESP32 kernel hang
- Replies: 6
- Views: 186
Re: ESP32 kernel hang
I haven't tried running it with separate parts, so I can't say, unfortunately.2 weeks delays before freeze may tell about some counter overflows.
Some counters somewhere.
Did you try to run your code with parts of it disabled? Still freezes?
- Fri Aug 08, 2025 11:17 am
- Forum: ESP-IDF
- Topic: ESP32 kernel hang
- Replies: 6
- Views: 186
ESP32 kernel hang
I am writing a program for ESP 32, in the platformio environment, using the Arduino framework. IDF-5.3.2 .
I use as a basis a debug board - ESP-WROOM-32 ESP32 30 Pin, which is inserted into my cross board with the rest of the harness.
Platform.ini file -
[env:esp32dev]
platform = espressif32 ...
I use as a basis a debug board - ESP-WROOM-32 ESP32 30 Pin, which is inserted into my cross board with the rest of the harness.
Platform.ini file -
[env:esp32dev]
platform = espressif32 ...
- Wed Mar 19, 2025 7:30 pm
- Forum: General Discussion
- Topic: ESP_32S3 NR16 I2S pin config problem
- Replies: 3
- Views: 529
ESP_32S3 NR16 I2S pin config problem
I use platformio to work with ESP32-s3 NR16. IDF version 5.3.2.
When I configure I2S using these pins it works but I need to use other pins.
This config pin work: `#define PIN_I2S_0_DATA GPIO_NUM_15
#define PIN_I2S_0_WS GPIO_NUM_16
#define PIN_I2S_0_CLK GPIO_NUM_7 `
But i need config I2S pin ...
When I configure I2S using these pins it works but I need to use other pins.
This config pin work: `#define PIN_I2S_0_DATA GPIO_NUM_15
#define PIN_I2S_0_WS GPIO_NUM_16
#define PIN_I2S_0_CLK GPIO_NUM_7 `
But i need config I2S pin ...
- Thu Dec 19, 2024 9:27 pm
- Forum: ESP-IDF
- Topic: ESP32 MQTT_SSL ERROR
- Replies: 1
- Views: 1319
Re: ESP32 MQTT_SSL ERROR
I visited Git, trying to find this file in the framework, well, it's not there either..
https://github.com/espressif/esp-idf/bl ... _mbedtls.c
https://github.com/espressif/esp-idf/tr ... ts/mbedtls
How to understand this?
https://github.com/espressif/esp-idf/bl ... _mbedtls.c
https://github.com/espressif/esp-idf/tr ... ts/mbedtls
How to understand this?
- Thu Dec 19, 2024 9:22 pm
- Forum: ESP-IDF
- Topic: ESP32 MQTT_SSL ERROR
- Replies: 1
- Views: 1319
ESP32 MQTT_SSL ERROR
I program in the environment Platformio.
I’m trying to run MQTT through a cloud broker, since cloud brokers use TLS connection, I have to use this. When I tried to do this, I got an error:mqtt_client: Secure element not enabled for esp-tls in menuconfig.
I set CONFIG_ESP_TLS_USE_SECURE_ELEMENT=y ...
I’m trying to run MQTT through a cloud broker, since cloud brokers use TLS connection, I have to use this. When I tried to do this, I got an error:mqtt_client: Secure element not enabled for esp-tls in menuconfig.
I set CONFIG_ESP_TLS_USE_SECURE_ELEMENT=y ...
- Fri Dec 06, 2024 4:43 pm
- Forum: General Discussion
- Topic: ESP32-S3 SIM7670G-4G-EN - esp_http_client_init, called Guru Meditation Error: Core 1 panic’ed
- Replies: 2
- Views: 1954
Re: ESP32-S3 SIM7670G-4G-EN - esp_http_client_init, called Guru Meditation Error: Core 1 panic’ed
Indeed, when all fields were initialized to 0, it worked!!
Thank you very much!!
Thank you very much!!
- Thu Dec 05, 2024 2:47 pm
- Forum: General Discussion
- Topic: ESP32-S3 SIM7670G-4G-EN - esp_http_client_init, called Guru Meditation Error: Core 1 panic’ed
- Replies: 2
- Views: 1954
ESP32-S3 SIM7670G-4G-EN - esp_http_client_init, called Guru Meditation Error: Core 1 panic’ed
I’m programming esp32 s3 using platformio.
My board: ESP32-S3 SIM7670G-4G-EN
framework: Arduino.
I am start Wi-Fi and connect to the access point. Then I try to initiate http via the esp_http_client_init function. My controller gets an error and reboots.
My platformini file:
[env:esp32-s3-R2N16R8 ...
My board: ESP32-S3 SIM7670G-4G-EN
framework: Arduino.
I am start Wi-Fi and connect to the access point. Then I try to initiate http via the esp_http_client_init function. My controller gets an error and reboots.
My platformini file:
[env:esp32-s3-R2N16R8 ...
- Mon Nov 18, 2024 9:34 am
- Forum: General Discussion
- Topic: ESP32-S3 don`t connect to wifi with auth:WIFI_AUTH_WPA_WPA2_PSK
- Replies: 0
- Views: 1476
ESP32-S3 don`t connect to wifi with auth:WIFI_AUTH_WPA_WPA2_PSK
When connecting to WiFi with the authentication type WIFI_AUTH_WPA_WPA2_PSK, I get error 201 (NO_AP_FOUND). Even if I set the authentication type WIFI_AUTH_WPA_WPA2_PSK, I still get the error. At the same time, it connects to other WiFis correctly. For example, to access points with the type: WIFI ...