Search found 13 matches

by psiphi75
Mon Oct 09, 2017 1:10 am
Forum: General Discussion
Topic: [SOLVED] Keep getting TG0WDT_SYS_RESET
Replies: 4
Views: 16870

Re: Keep getting TG0WDT_SYS_RESET

It seems deleting the sdkconfig file and setting up the configuration options from scratch seemed to fix the issue. I did not take the time to figure out which setting caused the issue I was having.
by psiphi75
Sun Oct 08, 2017 8:40 pm
Forum: General Discussion
Topic: [SOLVED] Keep getting TG0WDT_SYS_RESET
Replies: 4
Views: 16870

[SOLVED] Keep getting TG0WDT_SYS_RESET

I keep getting a TG0WDT_SYS_RESET reboot although, all the tasks seem to be working okay. There is not much context given for the issue. I get the following output. I'm running the latest code from GitHub and have the latest xtensa gcc compiler. Any ideas on how to debug this issue? ets Jun 8 2016 0...
by psiphi75
Mon Jul 31, 2017 6:19 am
Forum: General Discussion
Topic: uart_read_bytes() and UART_PATTERN_DET do not work well together
Replies: 3
Views: 7003

Re: uart_read_bytes() and UART_PATTERN_DET do not work well together

Thanks. Is there anyway to force a flush of the hardware fifo buffer such that it can be read by uart_read_bytes()?
by psiphi75
Mon Jul 31, 2017 1:21 am
Forum: General Discussion
Topic: uart_read_bytes() and UART_PATTERN_DET do not work well together
Replies: 3
Views: 7003

uart_read_bytes() and UART_PATTERN_DET do not work well together

Hi, I have some time critical code where I need to read data from the UART, wait for a specific character (using UART_PATTERN_DET), read the buffer up until the detected character and then, if conditions are met, write a new set of characters to UART TX (within 4 milliseconds). The only issue is tha...
by psiphi75
Thu Jul 06, 2017 9:31 am
Forum: General Discussion
Topic: uxTaskGetStackHighWaterMark always returns 0 (zero)
Replies: 2
Views: 5214

Re: uxTaskGetStackHighWaterMark always returns 0 (zero)

Thanks, in the end it was actually a bug in my own code. I should have commented on this earlier.
by psiphi75
Mon Jun 12, 2017 1:47 am
Forum: General Discussion
Topic: uxTaskGetStackHighWaterMark always returns 0 (zero)
Replies: 2
Views: 5214

uxTaskGetStackHighWaterMark always returns 0 (zero)

When using `uxTaskGetStackHighWaterMark(NULL)` within a task, it always returns zero. Even with a very large stack.

Any ideas?
by psiphi75
Fri May 26, 2017 11:46 pm
Forum: General Discussion
Topic: [SOLVED] Overflow issue when linking external libary on ESP32
Replies: 2
Views: 5683

Re: Overflow issue when linking external libary on ESP32

@kolban, that worked thanks. The funny thing is that I have read your previous post on this and tried that solution, but I received other error messages. So I gave up on that route. In a nutshell I changed the CONFIG_MEM_HEAP_AREA_SIZE value to (100 * 1024), probably way too much, but for now it's o...
by psiphi75
Fri May 26, 2017 8:54 pm
Forum: General Discussion
Topic: [SOLVED] Overflow issue when linking external libary on ESP32
Replies: 2
Views: 5683

[SOLVED] Overflow issue when linking external libary on ESP32

I am getting the following error when compiling on the ESP32: /opt/Espressif/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/5.2.0/../../../../xtensa-esp32-elf/bin/ld: /home/simon/Projects/esp32/build/nibbl.elf section `.dram0.bss' will not fit in region `dram0_0_seg' /opt/Espressif/xtensa-esp32-el...
by psiphi75
Fri May 12, 2017 6:04 am
Forum: Showcase
Topic: [Info] JavaScript on ESP32 - JerryScript
Replies: 6
Views: 13080

Re: [Info] JavaScript on ESP32 - JerryScript

Thanks Neil, that is very informative. I have experienced similar issues with Espruino.
by psiphi75
Thu May 11, 2017 9:35 am
Forum: Showcase
Topic: [Info] JavaScript on ESP32 - JerryScript
Replies: 6
Views: 13080

Re: [Info] JavaScript on ESP32 - JerryScript

@jumjum23 Thanks for the reply. First we have some low level performance critical UART stuff to do, so we need to write custom firmware. On the "heavy" JavaScript side it's downloading and parsing 1 to 2 kB of JSON over MQTT using TLS, also posting other JSON objects over MQTT too. Also running vari...