The github link has expired. I need the factory image too. Do you know where I can get it?
Search found 4 matches
- Sun May 16, 2021 7:33 am
- Forum: ESP IoT Solution
- Topic: ESP32 Azure IoT Kit
- Replies: 4
- Views: 12138
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: 5538
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
- Thu May 28, 2020 7:55 pm
- Forum: ESP-IDF
- Topic: [SOLVED] NVS encryption and nvs_get_str behaviour
- Replies: 3
- Views: 6143
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: 6143
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?