Search found 59 matches

by gregstewart90
Mon Sep 04, 2017 3:36 pm
Forum: General Discussion
Topic: Panic Handler Constantly Resetting
Replies: 3
Views: 5631

Re: Panic Handler Constantly Resetting

Thanks for the advice. I went to version 2.1, and that seems to have resolved the issue. It's difficult to reproduce.
by gregstewart90
Thu Aug 31, 2017 7:51 pm
Forum: General Discussion
Topic: Panic Handler Constantly Resetting
Replies: 3
Views: 5631

Panic Handler Constantly Resetting

Sometimes my esp32 will just start to constantly reset with the following output: Backtrace: 0x40086159:0x3ffd45a0 0x40087588:0x3ffd45d0 0x40089585:0x3ffd4600 0x400898fa:0x3ffd47d0 0x40089269:0x3ffd4810 0x400893cc:0x3ffd4890 0x4008202e:0x3ffd48b0 0x40086156:0x3ffd4970 0x40086156:0x3ffd49a0 0x4008958...
by gregstewart90
Tue Aug 29, 2017 4:36 pm
Forum: General Discussion
Topic: Storing Logs
Replies: 12
Views: 21874

Re: Storing Logs

I've found thi library that supports everything you have just described. I already have many units deployed which I can only update with OTA. Can I update the partition table with OTA? My current partition table looks like the following: # Name, Type, SubType, Offset, Size nvs, data, nvs, 0x9000, 0x...
by gregstewart90
Tue Aug 29, 2017 2:09 pm
Forum: General Discussion
Topic: Storing Logs
Replies: 12
Views: 21874

Storing Logs

I'm ready in my project to store logs on the esp32. The logs would be used to check for bugs and problems. I would like to know the best way to go about it. I've implemented some logs in the blob, but read-the-docs says I shouldn't store big things in the blob. What is the correct way to store logs ...
by gregstewart90
Thu Aug 24, 2017 1:24 pm
Forum: General Discussion
Topic: Source Subdirectories
Replies: 7
Views: 10196

Re: Source Subdirectories

I had to do both to make it work. If I didn't it would continually reset and print out the following: Backtrace: 0x40086159:0x3ffd45a0 0x40087588:0x3ffd45d0 0x40089585:0x3ffd4600 0x400898fa:0x3ffd47d0 0x40089269:0x3ffd4810 0x400893cc:0x3ffd4890 0x4008202e:0x3ffd48b0 0x40086156:0x3ffd4970 0x40086156:...
by gregstewart90
Tue Aug 22, 2017 10:00 pm
Forum: General Discussion
Topic: Source Subdirectories
Replies: 7
Views: 10196

Re: Source Subdirectories

I upgraded my IDF to the latest version, but now my project will not build. I get error like the following: /esp-idf/components/esp32/include/esp_wifi.h:160:18: error: 'CONFIG_ESP32_WIFI_RX_BA_WIN' undeclared (first use in this function) .rx_ba_win = CONFIG_ESP32_WIFI_RX_BA_WIN,\ unit_test.c:237:27:...
by gregstewart90
Tue Aug 22, 2017 12:05 am
Forum: General Discussion
Topic: Source Subdirectories
Replies: 7
Views: 10196

Re: Source Subdirectories

I tried what you said, but it gave me the same error. I even deleted the build directory to make sure nothing was left over. I tried changing the order of the subdirectories in the component.mk file, and that worked. Working component.mk file COMPONENT_SRCDIRS := . dir_one/dir_one_a dir_one Non-work...
by gregstewart90
Mon Aug 21, 2017 8:15 pm
Forum: General Discussion
Topic: Source Subdirectories
Replies: 7
Views: 10196

Source Subdirectories

I want to organize my code into multiple subdirectores. Currently I can only compile code from one directory deep. Below I have my desired organization. ->main ->dir_1 ->dir_2 ->dir_3 ->dir_3_a ->dir_3_b ->dir_3_b_1 In my main directory, I have a component.mk file with the following: COMPONENT_SRCDI...
by gregstewart90
Tue Aug 15, 2017 7:59 pm
Forum: ESP-IDF
Topic: ESP-IDF include additional paths
Replies: 14
Views: 48319

Re: ESP-IDF include additional paths

I've been able to organize my project with multiple directories in the 'main' directory. I would like to add subdirectories to some of those directories. ->main ->dir_1 ->dir_2 ->dir_3 ->dir_3_a ->dir_3_b ->dir_3_b_1 In my main directory, I have a component.mk file with the following: COMPONENT_SRCD...
by gregstewart90
Fri Aug 04, 2017 9:19 pm
Forum: General Discussion
Topic: i2c randombly fails
Replies: 19
Views: 37778

Re: i2c randombly fails

As Markus said, the problem still exists for me even with the wifi change. The SCL line clocks forever until I reset. The values I get back from my MCP23017 i2c device are wrong and take longer to get back than normal. I believe there is a fluctuation in the power or interference from relays close b...