Search found 1683 matches

by kolban
Mon Oct 03, 2016 5:30 am
Forum: ESP-IDF
Topic: [Answered] Assembler language reference manual ...
Replies: 17
Views: 60749

[Answered] Assembler language reference manual ...

Do we have access to an assembler language reference manual for the processor that runs the ESP32? The back story is that I want to drive the low level timings of NeoPixels/WS2812s from an ESP32. We were able to achieve this on the ESP8266 using an assembly language construct that looked as follows:...
by kolban
Mon Oct 03, 2016 5:05 am
Forum: Showcase
Topic: MQTT Broker on ESP32
Replies: 8
Views: 48952

Re: MQTT Broker on ESP32

How does the project described in this thread compare (or is related to) this one: https://github.com/tuanpmt/esp32-mqtt Update: 2016-10-17: I was testing out Cesanta Mongoose libraries and they too have MQTT support. When I tested, it seemed to work just fine. Update: 2016-10-18: Tested both Mongoo...
by kolban
Sun Oct 02, 2016 10:20 pm
Forum: Report Bugs
Topic: Bios Default BAUD [esp8266]
Replies: 4
Views: 14933

Re: Bios Default BAUD

I am finding that my default baud rate after a reboot is 115200. I am using the latest ESP-IDF images from Github and am using a DevKitC board made by Espressif to host my ESP32. Now ... I am also flashing the device at 115200. When I tried to flash it with a faster rate ... i.e 230400 that worked ....
by kolban
Sun Oct 02, 2016 6:43 pm
Forum: ESP-IDF
Topic: [Answered] How much of newlib is implemented/mapped/usable on ESP32?
Replies: 5
Views: 9092

[Answered] How much of newlib is implemented/mapped/usable on ESP32?

Looking at the ESP-IDF, I am fascinated by the "newlib" component. How much of it is mapped/implemented/usable on the ESP32? As an example, the posix "pthread" APIs seem to be present. Are these usable in an ESP32 environment? Do these map to FreeRTOS? To start, I'd be interested if we had a list of...
by kolban
Sun Oct 02, 2016 3:43 pm
Forum: General Discussion
Topic: ESP32 and ESP8266 freely downloadable book
Replies: 12
Views: 41409

Re: ESP32 and ESP8266 freely downloadable book

@davydnorris, My hope is to try and eventually cover every nook and cranny. Unfortunately, I don't have any additional information on ESP32 than the rest of the community does. We are all waiting and watching keenly for news and updates on ESP-IDF and how to leverage it as best as possible. It is ve...
by kolban
Sun Oct 02, 2016 3:41 am
Forum: General Discussion
Topic: ESP32 and ESP8266 freely downloadable book
Replies: 12
Views: 41409

Re: ESP32 and ESP8266 freely downloadable book

Right now I'm going to wait and see whether the writing can sensibly be merged into one book with consumability. If it can't, then I'll look at interest and demand and take the community interest as my guide. Step one is research and collect the subject materials and then we'll all be in a better pl...
by kolban
Sat Oct 01, 2016 10:45 pm
Forum: General Discussion
Topic: ESP32 and ESP8266 freely downloadable book
Replies: 12
Views: 41409

ESP32 and ESP8266 freely downloadable book

The Book has been superceded by an ESP32 dedicated book: https://leanpub.com/kolban-ESP32 Folks, The book covering both the ESP32 and ESP8266 has been updated and release. The download can be found here: https://leanpub.com/ESP8266_ESP32 This book is free for download and you may choose to contribut...
by kolban
Fri Sep 30, 2016 11:08 pm
Forum: ESP-IDF
Topic: [Solved] Reading character input from the serial port
Replies: 13
Views: 51662

Re: Reading character input from the serial port

Maybe we can use the ROM function in the mean time : int uart_rx_one_char(uint8_t *ch); That sure did look interesting, however the full description found in the uart.h found here reads: https://github.com/espressif/esp-idf/blob/master/components/esp32/include/rom/uart.h /** * @brief Get an input c...
by kolban
Fri Sep 30, 2016 4:33 am
Forum: ESP-IDF
Topic: [Info] Improving build times with parallel makes
Replies: 1
Views: 6523

[Info] Improving build times with parallel makes

I am running builds on a Raspberry Pi model 3 which has a quad core / 1GHz per core device. Performance is satisfactory but when I do a full build of everything from scratch, it can take 6 minutes plus. I noted that only 25% of my available CPU capacity was being used which makes sense ... it was ba...
by kolban
Fri Sep 30, 2016 12:36 am
Forum: ESP-IDF
Topic: [Solved] Reading character input from the serial port
Replies: 13
Views: 51662

[Solved] Reading character input from the serial port

I've reached the stage in a project where I would like to read serial data from the serial port. Given that printf() writes to the serial port, can I assume that getchar() will read from the serial port? ... later ... It appears that as of this post date, the ability to read from UART through stdin ...