Search found 15 matches

by esp32person
Wed Sep 11, 2024 3:23 pm
Forum: ESP-IDF
Topic: Application migration bug 5.1.4 to 5.3.1
Replies: 1
Views: 309

Re: Application migration bug 5.1.4 to 5.3.1

It was my bug trying to log WiFi event description from code.
by esp32person
Tue Sep 10, 2024 11:27 pm
Forum: ESP-IDF
Topic: Application migration bug 5.1.4 to 5.3.1
Replies: 1
Views: 309

Application migration bug 5.1.4 to 5.3.1

Hi, The application has been stable for over a year. I am trying to run BLE wifi provisioning manager part of the application and I get a crash with listing below. Any suggestion is appreciated. Thanks I (25090) phy_init: phy_version 1180,01f2a49,Jun 4 2024,16:34:25 I (25160) wifi:mode : sta (:........
by esp32person
Wed Aug 28, 2024 3:00 pm
Forum: General Discussion
Topic: ESP32 x509 based BLE pairing
Replies: 1
Views: 683

ESP32 x509 based BLE pairing

Hi,

Anyone seen examples of how to do x509 based BLE pairing examples. Preferably DTLS profile based 150Byte compressed certificate based?

Ref: https://www.silabs.com/wireless/bluetooth/cbap


Thanks
by esp32person
Wed Aug 28, 2024 2:54 pm
Forum: General Discussion
Topic: ESP32 Forum search bug
Replies: 1
Views: 688

ESP32 Forum search bug

Hi,

Sometimes when I search the English forum on Chrome browser, I get a blank page.
Does not search at all on Firefox.

Anybody seeing similar issues?

Thanks
by esp32person
Fri Aug 16, 2024 3:29 pm
Forum: General Discussion
Topic: Bluetooth Certification for ESP32 ESP32-WROOM-32E based product
Replies: 1
Views: 1264

Re: Bluetooth Certification for ESP32 ESP32-WROOM-32E based product

I contacted BT support. They gave me a TCW and I was able to continue like before 7/1/2024 (when they added too many checks and deprecation warnings for 2026 and withdrawal warning for 2031. They said lost of customers had issue due to changes) and file.
by esp32person
Wed Jul 31, 2024 2:53 pm
Forum: ESP-IDF
Topic: Get reason of disconnection for WiFi AP mode
Replies: 5
Views: 1597

Re: Get reason of disconnection for WiFi AP mode

Hi, if you look at wifi_prov_mgr example project, you have, case WIFI_PROV_CRED_FAIL: { wifi_prov_sta_fail_reason_t *reason = (wifi_prov_sta_fail_reason_t *)event_data; ESP_LOGE(TAG, "Provisioning failed!\n\tReason : %s" "\n\tPlease reset to factory and retry provisioning", Looking into that might g...
by esp32person
Tue Jul 30, 2024 8:27 pm
Forum: General Discussion
Topic: Bluetooth Certification for ESP32 ESP32-WROOM-32E based product
Replies: 1
Views: 1264

Bluetooth Certification for ESP32 ESP32-WROOM-32E based product

Hi, I have an old esp-idf 3.3 (aws flavor) based product using ESP32-WROOM-32E that needs BT SIG certification. I had certification ready to submit with QDID's 152314 & 141499 on SIG workspace. Now they have updated their website workspace and also withdrawn BT core 4.2 spec https://www.bluetooth.co...
by esp32person
Fri Feb 02, 2024 1:47 pm
Forum: General Discussion
Topic: Get data from an https site without using SSL while keeping server verification active
Replies: 2
Views: 1030

Re: Get data from an https site without using SSL while keeping server verification active

I want to read(download) a file from a https site. I want to be able to do this even when the certificate has expired as a backup plan. I am open to getting a TLS enabled download or a plain text read. There is not much documentation on what transport_type actually does .transport_type = HTTP_TRANSP...
by esp32person
Thu Jan 25, 2024 7:28 pm
Forum: General Discussion
Topic: Get data from an https site without using SSL while keeping server verification active
Replies: 2
Views: 1030

Get data from an https site without using SSL while keeping server verification active

Hi , I am trying to connect and read an https url without using SSL. Need to keep the server verification on though. I can read the data ok using .transport_type = HTTP_TRANSPORT_OVER_TCP or HTTP_TRANSPORT_OVER_SSL. However, when I look at wireshark data, I can see both using TLS1.2 and see TLS Hell...