Search found 41 matches

by 0xffff
Fri Nov 09, 2018 12:36 am
Forum: General Discussion
Topic: Brownout detection doesn't set reason code [BUG?]
Replies: 1
Views: 2930

Brownout detection doesn't set reason code [BUG?]

is this a bug that I should report or is cause known? [2018-11-09T00:22:05.003] [ALL] USB - [2018-11-09T00:22:05.005] [ALL] USB - Brownout detector was triggered [2018-11-09T00:22:05.006] [ALL] USB - [2018-11-09T00:22:05.009] [ALL] USB - ets Jun 8 2016 00:22:57 [2018-11-09T00:22:05.010] [ALL] USB - ...
by 0xffff
Thu Nov 08, 2018 7:49 pm
Forum: General Discussion
Topic: TG0WDT_SYS_RESET and TG1WDT_SYS_RESET
Replies: 4
Views: 8227

TG0WDT_SYS_RESET and TG1WDT_SYS_RESET

Hi, I am running freertos on 2 cpus - at one customer site I see occasional errors such as the following, sometimes with TG0 and sometimes with TG1, and every so often the board even locks up (but that's w/o any errors whatsoever). The stack pointer printed often points to a "Double Exception". I wa...
by 0xffff
Mon Oct 15, 2018 5:04 pm
Forum: General Discussion
Topic: WDT reset due to flash access lock-up
Replies: 2
Views: 4496

Re: WDT reset due to flash access lock-up

Someone from ESP? Help? :)
by 0xffff
Mon Oct 08, 2018 2:18 pm
Forum: General Discussion
Topic: ESP 32 is not connecting to wifi after using external power.
Replies: 2
Views: 5310

Re: ESP 32 is not connecting to wifi after using external power.

Do you get any wifi messages? Usually the wifi problems are the other way around because wifi connectivity draws more current than usual, so if power is provided via USB, the voltage drops. Are you sure the Vin is at correct level?
by 0xffff
Mon Oct 08, 2018 2:14 pm
Forum: General Discussion
Topic: gettimeofday fails after esp_restart
Replies: 4
Views: 5919

Re: gettimeofday fails after esp_restart

I had similar problem - not sure why this happens but it seemed to go away when I changed the configuration parameter in menuconfig -> component config -> ESP32 -> Timer used for gettimeofday from RTC & FRC to just RTC.

However, I don't really understand the FRC and RTC interactions.
by 0xffff
Sun Oct 07, 2018 8:07 pm
Forum: General Discussion
Topic: WDT reset due to flash access lock-up
Replies: 2
Views: 4496

WDT reset due to flash access lock-up

Hi, I'm running ESP32 w/ 2 CPUs. Occasionally, I get a WDT resest: W (85) boot: PRO CPU has been reset by WDT. W (85) boot: WDT reset info: PRO CPU PC=0x40084d50 W (86) boot: WDT reset info: APP CPU PC=0x40088214 Looking at the two addresses in gdb: (gdb) list *0x40084d50 0x40084d50 is in spi_flash_...
by 0xffff
Thu Aug 23, 2018 5:07 pm
Forum: General Discussion
Topic: Time() irregularities
Replies: 1
Views: 3293

Re: Time() irregularities

BTW, this problem only manifested in master - after regressing to version 3.0.1 it no longer appeared
by 0xffff
Tue Aug 21, 2018 4:02 pm
Forum: General Discussion
Topic: I2C Busy Timeout and wedged I2C Bus
Replies: 6
Views: 10498

Re: I2C Busy Timeout and wedged I2C Bus

Yes thanks - am aware of that but the version of arduino that includes this new interrupt-driven i2c code requires an unreleased version of the esp-idf, which introduced other issues in our application.
by 0xffff
Mon Aug 20, 2018 2:09 pm
Forum: General Discussion
Topic: About memory of ESP32
Replies: 1
Views: 2831

Re: About memory of ESP32

The technical reference manual has a pretty good description. E.g. how the address mapping works, various types of embedded memory, etc.
by 0xffff
Sun Aug 19, 2018 8:05 pm
Forum: General Discussion
Topic: I2C Busy Timeout and wedged I2C Bus
Replies: 6
Views: 10498

Re: I2C Busy Timeout and wedged I2C Bus

Thanks - yes, I also generally seem to not have any problems until I do a bunch of modbus and mqtt activity although I'm not sure why that is - it's possible, I suppose, that one of those tasks is corrupting memory. The i2c code is as follows - two methods called at the top level are to "check the i...