Search found 22 matches

by tharunjoy
Fri Dec 30, 2022 11:25 pm
Forum: General Discussion
Topic: ESP32-C3 menuconfig. No option for console output on UART1
Replies: 5
Views: 2632

Re: ESP32-C3 menuconfig. No option for console output on UART1

Software serial is working but initial some logs are sent to default uart pins. This happen until software serial get initialized.
MCU connected to default UART0 pin receives all this messages which may leads to conflicts.
by tharunjoy
Fri Dec 30, 2022 7:52 am
Forum: General Discussion
Topic: ESP32-C3 menuconfig. No option for console output on UART1
Replies: 5
Views: 2632

Re: ESP32-C3 menuconfig. No option for console output on UART1

Any update on this?

My observation: I am working on ESP_IDF 4.3 and I am able to choose custom uart pin from menuconfig but I am not able to see any log from those pins. This is seen only in esp32c3 chipset, verified in esp32 chipset.
by tharunjoy
Mon Jun 07, 2021 7:16 am
Forum: General Discussion
Topic: E (9305) TRANS_SSL: ssl_poll_read select error 104, errno = Connection reset by peer, fd = 54
Replies: 0
Views: 2356

E (9305) TRANS_SSL: ssl_poll_read select error 104, errno = Connection reset by peer, fd = 54

I am using the following for the development. Module or chip used: [ESP32-WROOM-32] IDF version: v3.3.3 Build System: make Compiler version: 1.22.0-80-g6c4433a5 Example working: simple_ota_example Issue: OTA crash I am trying to do OTA from an HTTPS server. I am able to do OTA successfully if there ...
by tharunjoy
Wed Feb 19, 2020 9:04 am
Forum: ESP-IDF
Topic: ESP_OTA: OTA image has invalid magic byte
Replies: 6
Views: 13848

Re: ESP_OTA: OTA image has invalid magic byte

Thank you guys..
I found the reason for this issue. Just like you guys told ESP is not able to automatically redirect the URL like a web browser. I just found the redirected URL and used that in the program, to successfully do an OTA update.
by tharunjoy
Tue Feb 18, 2020 12:52 pm
Forum: ESP-IDF
Topic: ESP_OTA: OTA image has invalid magic byte
Replies: 6
Views: 13848

Re: ESP_OTA: OTA image has invalid magic byte

I download image using curl and tried flashing through serial and got the same error. E (141) esp_image: image at 0x40000 has invalid magic byte W (147) esp_image: image at 0x40000 has invalid SPI mode 116 W (153) esp_image: image at 0x40000 has invalid SPI size 6 E (159) boot: Factory app partition...
by tharunjoy
Mon Feb 17, 2020 11:38 am
Forum: ESP-IDF
Topic: ESP_OTA: OTA image has invalid magic byte
Replies: 6
Views: 13848

ESP_OTA: OTA image has invalid magic byte

Hi, I am using ESP IDF 3.3v. I am trying to implement OTA update. I ran an openssl server locally and I was able to do OTA update smoothly. Then I tried deploying the same application firmware in onedrive, google drive and even in dropbox where I am getting some error as show below. I (641674) esp_h...
by tharunjoy
Thu Nov 21, 2019 7:32 am
Forum: ESP-IDF
Topic: BLE disconnection: cif=3 connected=0 conn_id=3 reason=0x0013
Replies: 7
Views: 8640

Re: BLE disconnection: cif=3 connected=0 conn_id=3 reason=0x0013

The issue was with the server device as per the reason=0x0013:: ESP_GATT_CONN_TERMINATE_PEER_USER
Reconfigured the BLE_GATT_Server device and the issue was resolved.
by tharunjoy
Thu Nov 21, 2019 6:30 am
Forum: ESP-IDF
Topic: BLE Client autoconnection or reconnection
Replies: 0
Views: 2224

BLE Client autoconnection or reconnection

Hi all, I am working on ble GATT client. Can anyone explain to me more about BLE reconnection and auto-connection? I have seen esp_ble_gattc_open function, esp_ble_gattc_open(gl_profile_tab[PROFILE].gattc_if, scan_result->scan_rst.bda, scan_result->scan_rst.ble_addr_type, true); were the documentati...
by tharunjoy
Thu Nov 07, 2019 5:58 am
Forum: General Discussion
Topic: bluetooth client error message
Replies: 2
Views: 5463

Re: bluetooth client error message

Hi,
I am getting same error.
Did you resolve this?
by tharunjoy
Mon Sep 16, 2019 6:22 am
Forum: ESP-IDF
Topic: BLE disconnection: cif=3 connected=0 conn_id=3 reason=0x0013
Replies: 7
Views: 8640

Re: BLE disconnection: cif=3 connected=0 conn_id=3 reason=0x0013

Hi @chegewara , 'ESP IDF is getting disconnected when the peripheral device stops advertising'. I found this based on one of my analyses on ble server(remote) disconnection from ble client(esp32). Before I was worried about my server configuration, so in-order to replicate another ble server I downl...