Search found 23 matches
- Fri Oct 11, 2024 8:10 am
- Forum: ESP-IDF
- Topic: Failed to change FreeRTOS task priority.
- Replies: 5
- Views: 6919
Re: Failed to change FreeRTOS task priority.
You should be writing this code like below: am using esp32s3 devkit-m1. void vTask21_test3(void *pvParameters) { printf("Task 2 is running with priority %d\r\n",uxTaskPriorityGet(NULL)); for (;;) { printf("About to lower the priority of task2 from %d to %d\r\n", uxTaskPriorityGet(NULL), (uxTaskPrior...
- Fri Mar 29, 2024 12:34 pm
- Forum: ESP-IDF
- Topic: ESP32S3 FOTA using GSM Module
- Replies: 11
- Views: 5842
Re: ESP32S3 FOTA using GSM Module
Hello, Sorry for the late reply to update my status over this task. 1] Issue of 0 padding while doing a fota over cellular is resolved. It was a data copying issue. 2] second difficulties was while fetching the data from server using http, which is also resolved by adding required flow for it. Just ...
- Fri Mar 29, 2024 12:24 pm
- Forum: ESP-IDF
- Topic: mbed TLS still does not support ECC cipher schemes?
- Replies: 0
- Views: 683
mbed TLS still does not support ECC cipher schemes?
Hello, Am using ESP32S3 in my project, having esp-idf version 4.4.0 I need to encrypt and decrypt the data using encryption algorithm. Am looking forward to use elliptical curve cryptography for the same, but couldn't find the APIs. I came across the issues 'https://github.com/Mbed-TLS/mbedtls/issue...
- Mon Jul 24, 2023 9:38 am
- Forum: ESP-IDF
- Topic: problem with deep sleep time (esp_sleep_enable_timer_wakeup() suddenly/randomly stops)
- Replies: 2
- Views: 1463
Re: problem with deep sleep time (esp_sleep_enable_timer_wakeup() suddenly/randomly stops)
Thank you axellin.
will do that.
will do that.
- Mon Jul 24, 2023 8:52 am
- Forum: ESP-IDF
- Topic: problem with deep sleep time (esp_sleep_enable_timer_wakeup() suddenly/randomly stops)
- Replies: 2
- Views: 1463
problem with deep sleep time (esp_sleep_enable_timer_wakeup() suddenly/randomly stops)
Hello All, we have designed a data logger using esp32s3, and device wakes up after every set time, and collects data from sensor and goes to deep sleep. But suddenly system is facing a issue where device is not waking from deep sleep after setting a time of 10mins. Kindly note the below behaviour: 1...
- Thu Apr 27, 2023 6:45 am
- Forum: ESP-IDF
- Topic: ESP32S3 FOTA using GSM Module
- Replies: 11
- Views: 5842
Re: ESP32S3 FOTA using GSM Module
Hello ESP_Sprite, I changed data fetching routine from quectel BG95-M5 file to esp-flash. Now I am getting below error when writing is completed. Total Write binary data length: 1201296 E (372229) boot_comm: mismatch chip ID, expected 9, found 0 Image validation failed, image is corrupted Exiting ta...
- Thu Apr 27, 2023 4:58 am
- Forum: ESP-IDF
- Topic: ESP32S3 FOTA using GSM Module
- Replies: 11
- Views: 5842
Re: ESP32S3 FOTA using GSM Module
Hi ESP_Sprite,
Thank you for your reply.
Will definitely try the approach you suggested, will share the results.
Thank you for your reply.
Will definitely try the approach you suggested, will share the results.
- Wed Apr 26, 2023 12:08 pm
- Forum: ESP-IDF
- Topic: ESP32S3 FOTA using GSM Module
- Replies: 11
- Views: 5842
Re: ESP32S3 FOTA using GSM Module
Hi @ESP_Sprite, Sorry for late reply. below are the fota logs which is taken when fota is done using wifi and gsm modem. -> Flash write log when WIFI: Total Write binary data length: 1201296 I (56101) esp_image: segment 0: paddr=00250020 vaddr=3c0e0020 size=317f8h (202744) map I (56181) esp_image: s...
- Wed Feb 08, 2023 4:06 am
- Forum: ESP-IDF
- Topic: ESP32S3 FOTA using GSM Module
- Replies: 11
- Views: 5842
Re: ESP32S3 FOTA using GSM Module
Hi @ESP_Sprite I compared both the files i.e. original .bin and 'ota partition read' .bin file in ascii. Missing part is something like below, but why I don't get it.. I got this : " rtc_clk_xtal_freq_get() == RTC_XTAL_FREQ_40M soc/esp32s3/clk.c res d'esp_clk_init vfs_err == ESP_OK && "Failed to reg...
- Tue Feb 07, 2023 9:05 am
- Forum: ESP-IDF
- Topic: ESP32S3 FOTA using GSM Module
- Replies: 11
- Views: 5842
Re: ESP32S3 FOTA using GSM Module
Hello, @ESP_Sprite As you suggested, i have used esptool and read OTA partition, in my case I wrote new .bin from 0x250000. You are perfectly right. Even though i have received correct number of bytes from server with header(which am bypassing while actual writing in a ota partition), some of the da...