Search found 47 matches

by fivdiAtESP32
Thu Jan 24, 2019 6:53 pm
Forum: ESP IoT Solution
Topic: IOT-Solution examples on ESP-wrover-kit V3
Replies: 17
Views: 24766

Re: IOT-Solution examples on ESP-wrover-kit V3

harry-boe wrote:
Wed Jan 23, 2019 12:14 pm
There is no need to patch the code and no need to comment out the Touch drivers.

Yes, with recent versions of esp-iot-solution (>= January 2019) the code no longer needs to be patched.
by fivdiAtESP32
Sun Jan 20, 2019 8:04 am
Forum: ESP-ADF
Topic: [ESP32-LyraTD-MSC V2.1] Send audio over TCP
Replies: 4
Views: 9689

Re: [ESP32-LyraTD-MSC V2.1] Send audio over TCP

Perhaps the "Recording WAV file and upload to HTTP Server" example provides some useful ideas.
by fivdiAtESP32
Sat Jan 19, 2019 5:42 pm
Forum: ESP-ADF
Topic: Source code for ESP32-LyraT firmware
Replies: 1
Views: 4316

Re: Source code for ESP32-LyraT firmware

For anyone who ends up here asking the same question, there's quite a bit of overlap in the features supported by the cli example and the features supported by the firmware flashed onto a newly purchased ESP32-LyraT.
by fivdiAtESP32
Sun Jan 13, 2019 8:45 pm
Forum: ESP-ADF
Topic: Source code for ESP32-LyraT firmware
Replies: 1
Views: 4316

Source code for ESP32-LyraT firmware

Is the source code for the firmware flashed onto a newly purchased ESP32-LyraT available online?
by fivdiAtESP32
Sat Jan 12, 2019 9:40 am
Forum: ESP IoT Solution
Topic: Who gave me a schematic of the ESP32-Sense Kit?
Replies: 1
Views: 4788

Re: Who gave me a schematic of the ESP32-Sense Kit?

There's a ZIP file with the schematic at https://www.espressif.com/en/support/download/documents To find it search for "ESP32-Sense Kit Reference Design" on that page. The current version of the ZIP file is at https://www.espressif.com/sites/default/files/documentation/ESP32-Sense_Kit_reference_desi...
by fivdiAtESP32
Thu Jan 10, 2019 6:48 pm
Forum: Showcase
Topic: [info] ESP-EYE DevKIT from Espressif spotted in the wild and i got one :)
Replies: 13
Views: 23611

Re: [info] ESP-EYE DevKIT from Espressif spotted in the wild and i got one :)

Vader_Mester wrote:
Thu Jan 10, 2019 11:23 am
fivdiAtESP32 wrote:
Wed Jan 02, 2019 5:58 pm
Interesting, very interesting indeed. There's some information about the board here too.
Most useful post. I have mine untouched so far, cause I don't know how to use it. Now I do :)

The link is broken, the information is now here :)
by fivdiAtESP32
Mon Jan 07, 2019 7:17 pm
Forum: General Discussion
Topic: create program from scratch without make
Replies: 5
Views: 5922

Re: create program from scratch without make

Thank you for the link i've watched the video i've import the xml i've encounter a problem: cygwin/types:no such file or directory so i've creted one in newlib and pass the types.h from sys folder into cygwin folder (that i've created) now it shows me another problem: C:\esp-idf/components/freertos...
by fivdiAtESP32
Mon Jan 07, 2019 7:08 pm
Forum: General Discussion
Topic: How to increase ram for dynamic allocation
Replies: 2
Views: 6006

Re: How to increase ram for dynamic allocation

The information about the heap displayed at boot time isn't all that counts. What's also important is the largest_free_block of memory available on the heap when malloc is invoked. There's a function called heap_caps_print_heap_info which can be invoked to print information about memory that can be ...
by fivdiAtESP32
Sun Jan 06, 2019 5:22 pm
Forum: General Discussion
Topic: (solved) I2C device poses a challenge
Replies: 18
Views: 24272

Re: I2C device poses a challenge

Hmm..., what's the value of I2C_WAITTIME_TICKS?
by fivdiAtESP32
Sun Jan 06, 2019 4:41 pm
Forum: General Discussion
Topic: (solved) I2C device poses a challenge
Replies: 18
Views: 24272

Re: I2C device poses a challenge

Would something like the following not work? m_i2c_cmd = i2c_cmd_link_create(); ESP_ERROR_CHECK(i2c_master_start(m_i2c_cmd)); ESP_ERROR_CHECK(i2c_master_write_byte(m_i2c_cmd, SHT20_ADDR_WRITE, true)); ESP_ERROR_CHECK(i2c_master_write_byte(m_i2c_cmd, cmd, true)); ESP_ERROR_CHECK(i2c_master_cmd_begin(...