Search found 4 matches

by asweeney
Mon Sep 16, 2019 12:02 pm
Forum: ESP-IDF
Topic: RDA5807M gets i2c commands but ESP32 cannot read (i2c null address error)
Replies: 7
Views: 9073

Re: RDA5807M gets i2c commands but ESP32 cannot read (i2c null address error)

Read needs to be called like this:

Code: Select all

i2c_master_read_byte(cmd, &h, ACK_VAL);
by asweeney
Tue Dec 11, 2018 7:16 pm
Forum: ESP-IDF
Topic: OTA update multiple bin files, only one URL
Replies: 2
Views: 3777

Re: OTA update multiple bin files, only one URL

The answer to the second question is that you only need to point your URL at your app's .bin file for your app to work. The other files generated by make are not required to be sent over the network for OTA update.
by asweeney
Tue Dec 11, 2018 5:22 pm
Forum: ESP-IDF
Topic: OTA update multiple bin files, only one URL
Replies: 2
Views: 3777

Re: OTA update multiple bin files, only one URL

So the answer to my first question is that the main folder of the project needs to contain the file Kconfig.projbuild with this: menu "Example Configuration" config WIFI_SSID string "WiFi SSID" default "myssid" help SSID (network name) for the example to connect to. config WIFI_PASSWORD string "WiFi...
by asweeney
Wed Dec 05, 2018 1:09 pm
Forum: ESP-IDF
Topic: OTA update multiple bin files, only one URL
Replies: 2
Views: 3777

OTA update multiple bin files, only one URL

Hello everyone, First post here. I've been using ESP32 for a year now. I'm building a wifi enabled thermostat and heating control. I have a question about the OTA update sample files. In the OTA README.md it says I can enter the URL in menuconfig under 'Example Configuration'. In my Example Configur...