Search found 4 matches

by joncmaloney
Fri Aug 05, 2022 7:26 am
Forum: ESP-IDF
Topic: [SOLVED] Create a variable at an absolute address in flash
Replies: 3
Views: 3073

Re: [SOLVED] Create a variable at an absolute address in flash

@hattmt are you able to send an example of how you got this to work? I'm looking to do the same thing to ensure that RTC no init data is always placed in the same location event if we firmware update a device.
by joncmaloney
Fri Aug 13, 2021 7:50 am
Forum: ESP-IDF
Topic: HTTPS + HTTPS OTA - client key password
Replies: 1
Views: 1357

Re: HTTPS + HTTPS OTA - client key password

Hi All, I've found a work around for anyone else that might have the same problem. Assuming you are using mbedtls as the ssl library. The below function will remove password protection from a private key file. **Note i've only tested this using keys in PEM file format that are using RSA. #include "m...
by joncmaloney
Thu Aug 12, 2021 12:45 am
Forum: ESP-IDF
Topic: HTTPS + HTTPS OTA - client key password
Replies: 1
Views: 1357

HTTPS + HTTPS OTA - client key password

Hi, The MQTT over SSL API provides two fields clientkey_password and clientkey_password_len that allow connections to MQTT to be supplied with password protected keys. Is there a way to create HTTPS connections and OTA over HTTPS with password protected keys? I can't seem to find a field for this di...
by joncmaloney
Mon Jan 06, 2020 10:17 am
Forum: ESP-ADF
Topic: Procedure for working with custom hardware?
Replies: 2
Views: 5543

Re: Procedure for working with custom hardware?

Hi wulph1, I've recently had to use esp-adf on custom hardware. To do this i've implemented a custom driver for the TLV320AIC3110. In terms of project hirarchy. 1. Create a component in your own project /component/audio to host custom driver and board definition. 2. In this component folder i've cre...