The github link has expired. I need the factory image too. Do you know where I can get it?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
Search found 4 matches
- Sun May 16, 2021 7:33 am
- Forum: ESP IoT Solution
- Topic: ESP32 Azure IoT Kit
- Replies: 4
- Views: 12898
Re: ESP32 Azure IoT Kit
- Tue Jul 07, 2020 12:15 pm
- Forum: General Discussion
- Topic: mqtt_message_receive error trying to connect to broker
- Replies: 2
- Views: 6091
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
.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
- Thu May 28, 2020 7:55 pm
- Forum: ESP-IDF
- Topic: [SOLVED] NVS encryption and nvs_get_str behaviour
- Replies: 3
- Views: 6847
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!
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!
- Tue May 26, 2020 8:31 am
- Forum: ESP-IDF
- Topic: [SOLVED] NVS encryption and nvs_get_str behaviour
- Replies: 3
- Views: 6847
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?