Search found 21 matches
- Thu Jan 21, 2021 7:12 am
- Forum: General Discussion
- Topic: ESP32 OTA over BLE.
- Replies: 1
- Views: 114
ESP32 OTA over BLE.
I am developing a code for implementing OTA over BLE. Since no BLE OTA available for ESP32 I am creating a custom mehtod. OTA works fine. But the time required is really high. In the process, I am only able to send 500 bytes per second via ESP_GATTS_EXEC_WRITE_EVT. and it almost takes 1 hour 5 minut...
- Thu Dec 31, 2020 7:44 am
- Forum: General Discussion
- Topic: esp_http_client_close(client) returns FAIL
- Replies: 1
- Views: 183
esp_http_client_close(client) returns FAIL
Hi, I was trying to implement file uploading using the native method. I am able to upload the files without any problem but after the upload when I am trying to close the connection, it always returns FAIL. err = esp_http_client_close(client); if (err != ESP_OK) { ESP_LOGE(TAG, "Failed to close HTTP...
- Sat Oct 24, 2020 9:05 am
- Forum: General Discussion
- Topic: esp32 light sleep wake-up from uart
- Replies: 2
- Views: 467
Re: esp32 light sleep wake-up from uart
Can anybody please clarify
- Thu Oct 22, 2020 6:45 am
- Forum: General Discussion
- Topic: esp32 light sleep wake-up from uart
- Replies: 2
- Views: 467
esp32 light sleep wake-up from uart
Hi, I am using 5 and 4 for UART num 1. uart_set_pin(UART_NUM, 5, 4, UART_PIN_NO_CHANGE, UART_PIN_NO_CHANGE); I would like to implement a light sleep-wake up from UART. But according to the Doc, I am seeing some confusing things in pins selections. Which is: "in ESP32, the wake-up signal can only be ...
- Mon Aug 31, 2020 3:42 am
- Forum: General Discussion
- Topic: esp32 -Jtag Programming
- Replies: 5
- Views: 1244
Re: esp32 -Jtag Programming
Yes but in my case I don't have uart options provided in the PCB. trying via JTAG. Can anyone help??
- Fri Aug 28, 2020 5:42 pm
- Forum: General Discussion
- Topic: esp32 -Jtag Programming
- Replies: 5
- Views: 1244
Re: esp32 -Jtag Programming
Hi kubera, are you able to run esptool.py tool to read flash contents from the chip? It may help determine why programming over JTAG is failing. For instance, try reading back the flash contents, and compare it with the binary file. See if flash is not programmed at all, or there are only some prog...
- Fri Aug 28, 2020 9:53 am
- Forum: General Discussion
- Topic: esp32 -Jtag Programming
- Replies: 5
- Views: 1244
esp32 -Jtag Programming
Hi, I got a new esp32 chip, Trying to flash the code with JTAG options. The chip is fresh nothing is written into it. when I tried to upload the new partition.bin using the following command openocd -f board/esp32-wrover-kit-3.3v.cfg -c "program_esp filename.bin 0x10000 verify exit" programming was ...
- Sun Aug 23, 2020 4:39 am
- Forum: ESP IoT Solution
- Topic: mbedtls_ssl_handshake returned -0x10
- Replies: 1
- Views: 744
Re: mbedtls_ssl_handshake returned -0x10
Iam still having the issue afetr multiple switching of wifi
- Sun Aug 23, 2020 4:01 am
- Forum: General Discussion
- Topic: memory releasing after task delete
- Replies: 3
- Views: 754
Re: memory releasing after task delete
Thanks for the reply, ESP_Sprite "abort() was called at PC 0x40082f56 on core 0 0x40082f56: lock_acquire generic at C:/Users/Desktop/esp-idf/components newlib/locks.c:143 " This is the error I am getting after the following flow. The program starts with wifi then shifts to BLE upon getting notificat...
- Thu Aug 20, 2020 5:16 am
- Forum: General Discussion
- Topic: memory releasing after task delete
- Replies: 3
- Views: 754
memory releasing after task delete
Hi,
I have wifi and ble in separate tasks. implemented blufi along with it for provisioning.
while switching from one task to another I call vTaskDelete(handler). To delete that task. But unfortunately i doubut memory is not released by that call. How can we free the memory?
I have wifi and ble in separate tasks. implemented blufi along with it for provisioning.
while switching from one task to another I call vTaskDelete(handler). To delete that task. But unfortunately i doubut memory is not released by that call. How can we free the memory?