Search found 1683 matches

by kolban
Sun Dec 18, 2016 10:56 pm
Forum: General Discussion
Topic: Allocating more memory result in bulk errors
Replies: 2
Views: 6323

Re: Allocating more memory result in bulk errors

Would you be able to post more code than that just seen?
What makes you think that is the location where the error occurs?
Have you tried attaching "gdb" to look at the back trace to see exactly where the error is encountered?

See (for example) ... https://www.youtube.com/watch?v=p63VEYS7ZUw
by kolban
Sun Dec 18, 2016 8:44 pm
Forum: General Discussion
Topic: Eclipse IDE - No module named serial
Replies: 12
Views: 28231

Re: Eclipse IDE - No module named serial

Howdy Joe, did you see this video tutorial:

https://www.youtube.com/watch?v=bYh2w0HzS7s

Does your configuration dramatically change from that described there? If yes, can you describe your recipes?

Neil
by kolban
Sun Dec 18, 2016 8:41 pm
Forum: ESP-IDF
Topic: Debugging ESP32 programs on Linux using an "ESP32 Emulator Library"
Replies: 14
Views: 38413

Re: Debugging ESP32 programs on Linux using an "ESP32 Emulator Library"

That is great news!!! Might this be a consideration for a community based sub-project? It would "appear" that relatively little ESP32 internals skills would be needed as the core (opinion) would be Linux based programming and a mapping of the ESP-IDF exposed functions. On loose thinking, we might al...
by kolban
Sun Dec 18, 2016 8:16 pm
Forum: ESP-IDF
Topic: Enabling FreeRTOS configUSE_TRACE_FACILITY
Replies: 1
Views: 6458

Enabling FreeRTOS configUSE_TRACE_FACILITY

I was wanting to use the FreeRTOS function called "uxTaskGetSystemState" which can be found documented here: http://www.freertos.org/uxTaskGetSystemState.html The docs say that this is only available if "configUSE_TRACE_FACILITY" is set to "1" in the "FreeRTOSConfig.h" file. I checked the value supp...
by kolban
Sun Dec 18, 2016 5:15 pm
Forum: ESP-IDF
Topic: Debugging ESP32 programs on Linux using an "ESP32 Emulator Library"
Replies: 14
Views: 38413

Debugging ESP32 programs on Linux using an "ESP32 Emulator Library"

As I build out ESP32 applications by editing source in Eclipse, compiling it with the ESP32 ESP-IDF framework and then deploying it and watching the console ... I found myself a little frustrated at the lag between edit, compile, test -> repeat. Obviously if I was a better programmer I would get it ...
by kolban
Sun Dec 18, 2016 4:59 pm
Forum: General Discussion
Topic: Eclipse IDE - No module named serial
Replies: 12
Views: 28231

Re: Eclipse IDE - No module named serial

Howdy Joe,
Did you by any chance see the documentation here:

http://esp-idf.readthedocs.io/en/latest ... setup.html

Step 0 is to install some pre-reqs an that looks like includes "python-serial"
by kolban
Sat Dec 17, 2016 4:39 pm
Forum: Showcase
Topic: JavaScript on ESP32 - Duktape
Replies: 68
Views: 116984

Re: JavaScript on ESP32 - Duktape

Thank you Mr shadow, The JavaScript environment continues to be my pet and hobby project. If you or anyone else get interested in it, you will find that I will make time to work with you to get it running and chat about it. Collaborators and commenters are very welcome. This is a long-haul project a...
by kolban
Sat Dec 17, 2016 4:35 pm
Forum: ESP-IDF
Topic: Storage allocation puzzles ... heap vs static ...
Replies: 4
Views: 9090

Re: Storage allocation puzzles ... heap vs static ...

Mr Sprite_TM ... I bow low to you sir. Your thinking was perfect and the explanation first class. I changed my logic to include: int i; for (i=0; i<10*1024; i++) { buffer[i] = rand()%256; } int j=0; for (i=0; i<10*1024; i++) { j=j+buffer[i]; } To force utilization of all the data in the buffer varia...
by kolban
Sat Dec 17, 2016 4:21 pm
Forum: ESP32 Arduino
Topic: timers in esp32
Replies: 11
Views: 28453

Re: timers in esp32

See the following for information about the underlying hardware timers ... http://esp-idf.readthedocs.io/en/latest/api/timer.html However, depending on your needs there are "logically" any number of timers. It is common to register a timer and have that timer added to a list such that the "next" tim...
by kolban
Sat Dec 17, 2016 4:17 pm
Forum: General Discussion
Topic: external interrupt in esp32
Replies: 2
Views: 9313

Re: external interrupt in esp32

I believe that every GPIO pin can on the ESP32 can be configured to indicate a signal level change and notify the application. Since there are > 30 GPIOs on the ESP32 ... that would give you > 30 sources of external detection.