Search found 4 matches

by pollock694
Sun May 16, 2021 7:33 am
Forum: ESP IoT Solution
Topic: ESP32 Azure IoT Kit
Replies: 4
Views: 11312

Re: ESP32 Azure IoT Kit

Smalldog wrote:
Thu Jun 13, 2019 12:18 am
Does anyone know how to reload the factory image back on the dev kit? I would like to restore it back to stock, but have not been able to find the program/files for it.

Thanks,
Jeff
The github link has expired. I need the factory image too. Do you know where I can get it?
by pollock694
Tue Jul 07, 2020 12:15 pm
Forum: General Discussion
Topic: mqtt_message_receive error trying to connect to broker
Replies: 2
Views: 5060

Re: mqtt_message_receive error trying to connect to broker

Could you try specifying these parameters too? .port = MQTT_PORT, .transport = MQTT_TRANSPORT_OVER_SSL, .cert_pem = (const char *)mqtt_eclipse_org_pem_start, .username = MQTT_USER_NAME, .password = MQTT_PASSWORD, .client_id = MQTT_CLIENT_ID, .keepalive = MQTT_KEEPALIVE
by pollock694
Thu May 28, 2020 7:55 pm
Forum: ESP-IDF
Topic: [SOLVED] NVS encryption and nvs_get_str behaviour
Replies: 3
Views: 5464

Re: [SOLVED] NVS encryption and nvs_get_str behaviour

Hi @nickname,

Thank you for your reply. I was using the correct offset but I figured out that I was using esp32 chip revision 0. It works fine when I try it on chip revision 1. No issues so far!
by pollock694
Tue May 26, 2020 8:31 am
Forum: ESP-IDF
Topic: [SOLVED] NVS encryption and nvs_get_str behaviour
Replies: 3
Views: 5464

Re: [SOLVED] NVS encryption and nvs_get_str behaviour

I encountered the same problem. After NVS encryption, NVS secure intialization with the key and NVS partition initialization works fine but when I try to read using nvs_get_str, it fails. Not sure how to fix it. Have you fixed it?