Search found 36 matches

by czuvich
Tue Dec 25, 2018 3:34 am
Forum: ESP-IDF
Topic: WROVER Dev Kit 4.1 LCD Examples
Replies: 2
Views: 5974

Re: WROVER Dev Kit 4.1 LCD Examples

Nevermind. I'm using SD capability and have a card plugged in. It looks like I need to remove the resistor R167.
by czuvich
Tue Dec 25, 2018 2:49 am
Forum: ESP-IDF
Topic: WROVER Dev Kit 4.1 LCD Examples
Replies: 2
Views: 5974

WROVER Dev Kit 4.1 LCD Examples

I have a WROVER 4.1 Dev Kit, and I'm trying to get the LCD to work. I tried downloading the following examples from github:

https://github.com/espressif/WROVER_KIT_LCD

The examples run, but the screen has nothing on it (it's just backlit). Is there some other configuration I need?
by czuvich
Mon Dec 24, 2018 6:09 pm
Forum: ESP-IDF
Topic: WROVER and PSRAM
Replies: 2
Views: 5998

Re: WROVER and PSRAM

Thank you for the excellent explanation! So I've learned a few things about SPI RAM, allocators, and Arduino. I'll post my findings in another thread.
by czuvich
Sun Dec 23, 2018 11:08 pm
Forum: ESP-IDF
Topic: WROVER and PSRAM
Replies: 2
Views: 5998

WROVER and PSRAM

I’m getting memory issues with the WROVER, but I’m fairly certain I have plenty of available heap. Having said that, I probably have a misunderstanding of memory mapping and PSRAM. I have a WROVER DEV kit v4.1 running BLE scams using BLEDevice library in Arduino. I’m currently running Arduino 1.0 re...
by czuvich
Wed Dec 19, 2018 3:28 pm
Forum: ESP32 Arduino
Topic: BLE and WiFi Tasks Memory Allocation Failed
Replies: 3
Views: 6671

Re: BLE and WiFi Tasks Memory Allocation Failed

I’ve tried 10K to 40K, but I get the same result. The log output says there’s 4182376 free heap before TLS. TLS requires that much heap?
by czuvich
Wed Dec 19, 2018 12:14 am
Forum: ESP32 Arduino
Topic: Arduino Support Resources
Replies: 0
Views: 2271

Arduino Support Resources

First of all, I really think the ESP32 chip is amazing! I am currently proof of concepts in Arduino targeting various dev boards (WROVER and WROOM). At some point, I may consider going into a production environment with these chips, and I do realize that at that point targeting the native chip will ...
by czuvich
Sat Dec 15, 2018 7:02 pm
Forum: ESP32 Arduino
Topic: BLE and WiFi Tasks Memory Allocation Failed
Replies: 3
Views: 6671

BLE and WiFi Tasks Memory Allocation Failed

I have 2 FreeRTOS tasks where task 1 executes BLEDevice::init() and task 2 uses HttpClient to send a request to an HTTPS backend. I am running on a ESP WROVER DEV Kit v4.1. I run the first BLE task and it executes fine; however, once the WiFi task executes (after the BLE task), it throws the followi...
by czuvich
Wed Dec 12, 2018 5:47 pm
Forum: ESP32 Arduino
Topic: Increase Stack Size (Stack Canary exception on Loop Task)
Replies: 1
Views: 5376

Re: Increase Stack Size (Stack Canary exception on Loop Task)

I'm barking up the wrong tree here... I moved my HTTP code to a task, and I was able to get it working just fine. This chip rocks!
by czuvich
Wed Dec 12, 2018 5:28 pm
Forum: ESP32 Arduino
Topic: Increase Stack Size (Stack Canary exception on Loop Task)
Replies: 1
Views: 5376

Increase Stack Size (Stack Canary exception on Loop Task)

Chip: ESP32 WROVER-B Dev Kit IDE: Arduino I'm getting Stack canary watchpoint triggered (loop task) while running some WiFi code on Arduino. I'm guessing it's due to the HTTP JSON serialization/deserialization routines; however, the allocations are not that large. I'm even using using std::vector......