Search found 513 matches

by loboris
Thu Jan 05, 2017 10:47 am
Forum: General Discussion
Topic: which new "esp" 8 pin ic is this on the new esp32 modul? ;-)
Replies: 115
Views: 137755

Re: which new "esp" 8 pin ic is this on the new esp32 modul? ;-)

I think we can hardly expect 4 Mbyte (ps)RAM on ESP32 module. The best candidate for external RAM with ESP32 (that I know about) is SPI SRAM like http://www.microchip.com/wwwproducts/en/23A1024 and it is only 1 Mbit ( 128 KByte) I'm very interested to hear form Espressif if they have some other solu...
by loboris
Mon Dec 26, 2016 12:56 am
Forum: Showcase
Topic: JavaScript on ESP32 - Duktape
Replies: 68
Views: 115645

Re: JavaScript on ESP32 - Duktape

Congratulations on the great work. I've tried to build from sources and all went without a problem. First impressions are very good, I hope more modules and features will be added soon. I suggest that you add flashing of the file system images to makefile , something like: # # Perform flashing of bo...
by loboris
Wed Dec 21, 2016 8:01 pm
Forum: ESP-IDF
Topic: Sample code for software based timer into ESP32-idf
Replies: 15
Views: 31990

Re: Sample code for software based timer into ESP32-idf

You can use FreeRTOS timers, look at esp-idf/components/freertos/include/freertos/timers.h and http://www.freertos.org/FreeRTOS-Software-Timer-API-Functions.html It is quite simple to use it and it works well. Keep in mind that the timer interval is in FreeRTOS ticks. #include "freertos/timers.h" Ti...