Search found 643 matches

by mzimmers
Fri Nov 01, 2019 7:55 pm
Forum: ESP-IDF
Topic: (answered) Questions about OTA/bootloader
Replies: 7
Views: 7260

Re: Questions about OTA/bootloader

OK, so is there a write-up that shows how to code a branch from a factory partition into an OTA partition?

Thanks...
by mzimmers
Fri Nov 01, 2019 2:32 pm
Forum: ESP-IDF
Topic: (answered) Questions about OTA/bootloader
Replies: 7
Views: 7260

Re: Questions about OTA/bootloader

Hi Chegewara -

Thanks for the reply. I'm not sure I understand your answer about the factory partition -- are you saying that it's possible to install a minimal application in the factory partition that just accepts a flash download to go to one of the OTA partitions?
by mzimmers
Thu Oct 31, 2019 8:15 pm
Forum: ESP-IDF
Topic: (answered) Questions about OTA/bootloader
Replies: 7
Views: 7260

(answered) Questions about OTA/bootloader

Hi all - Our first product based on the ESP32 is nearing an end. Unfortunately, so is the amount of available flash memory. My program has grown to over 1MB, and as such, I don't have room to keep copies in factory, ota_0 and ota_1. In fact, when I add syslog functionality, I'll probably have to eli...
by mzimmers
Fri Oct 25, 2019 5:21 pm
Forum: ESP-IDF
Topic: (resolved) issue with toolchain, maybe environment variables
Replies: 7
Views: 7693

Re: issue with toolchain, maybe environment variables

Found it (the answer to the build not running at all):

https://github.com/espressif/esp-idf/co ... 10786e249c

Evidently this patch was applied after the V4.1 tag was created.

BUT: I still have the original problem.
by mzimmers
Fri Oct 25, 2019 3:44 pm
Forum: ESP-IDF
Topic: (resolved) issue with toolchain, maybe environment variables
Replies: 7
Views: 7693

Re: issue with toolchain, maybe environment variables

Hi jsan - Thanks for the reply. I deleted the old toolchain, and still get the error. Something's definitely messed up in my build environment, though. If I run idf.py, I can build. If I run make, I get this error now: DEFCONFIG Traceback (most recent call last): File "C:/esp-idf/tools/kconfig_new/c...
by mzimmers
Thu Oct 24, 2019 11:00 pm
Forum: General Discussion
Topic: (resolved) how to add subdirectories to build?
Replies: 2
Views: 3530

Re: how to add subdirectories to build?

This got me partway there -- adding this line to my top-level makefile:

Code: Select all

EXTRA_COMPONENT_DIRS := components/ccrtp-2.1.2
Still doesn't answer how to add non-component subdirectories, but this will do for now.
by mzimmers
Thu Oct 24, 2019 10:56 pm
Forum: ESP-IDF
Topic: (resolved) any chance of adding SLP to the IDF?
Replies: 2
Views: 2674

Re: any chance of adding SLP to the IDF?

Hi, Angus - sorry it took me so long to get back with you. The answer to your question is "no," but I didn't need much of the protocol, so I just cobbled together something. Now I'm on to RTP and trying to get the Ethernet kit working...I suspect that something's wrong with my toolchain, though. The...
by mzimmers
Thu Oct 24, 2019 4:13 pm
Forum: ESP-IDF
Topic: (resolved) issue with toolchain, maybe environment variables
Replies: 7
Views: 7693

(resolved) issue with toolchain, maybe environment variables

Hi all - I'm trying to build one of the Ethernet examples from the latest IDF. Whenever I make, I get this warning: WARNING: Toolchain version is not supported: crosstool-ng-1.22.0-80-g6c4433a5 Expected to see version: esp32-2019r1 Please check ESP-IDF setup instructions and update the toolchain, or...
by mzimmers
Tue Oct 22, 2019 8:56 pm
Forum: General Discussion
Topic: RTP/RTSP support
Replies: 5
Views: 10208

Re: RTP/RTSP support

Bumping this because I'm interested too. And I can see that building it myself is more effort than I realized.
by mzimmers
Mon Oct 21, 2019 9:57 pm
Forum: General Discussion
Topic: (resolved) how to add subdirectories to build?
Replies: 2
Views: 3530

Re: how to add subdirectories to build?

I'm not at all sure what I'm doing here, so I'm trying different things: I added a CMakeLists.txt file (based on one I found in lwip) set(COMPONENT_SRCS "AccountDlg.cpp" "AddDlg.cpp" ) set(COMPONENT_ADD_INCLUDEDIRS "main/MicroSIP-3.19.21-src" ) It has some other stuff in it as well, but I don't thin...