Search found 60 matches

by enitalp
Wed Apr 26, 2017 2:18 pm
Forum: General Discussion
Topic: ESP32 Power Usage, pretty pleased
Replies: 1
Views: 4072

ESP32 Power Usage, pretty pleased

Hi all. Without divulging what i'm doing (it's a secret, would have to kill you if i've said it) We are using earling prototype of a custom board. ESP32 Wroom+ USB Charging circuit + battery managment + NXP Pedometer + RGB Light controller + RFID Reader. + HAL + various GPIO FullSizeRender (003).jpg...
by enitalp
Fri Mar 24, 2017 9:44 pm
Forum: General Discussion
Topic: ESP32 + LP55231 IC2 gremlins
Replies: 2
Views: 4620

Re: ESP32 + LP55231 IC2 gremlins

Using 100khz When pushing regularly // Set enable bit WriteReg(REG_CNTRL1, 0x40 ); // enable internal clock & charge pump & write auto increment WriteReg(REG_MISC, 0x53); It seem to fix it. it was random before, but with that for the instant i don't have it. I can't find any people having the same p...
by enitalp
Fri Mar 24, 2017 3:44 pm
Forum: General Discussion
Topic: ESP32 + LP55231 IC2 gremlins
Replies: 2
Views: 4620

ESP32 + LP55231 IC2 gremlins

Hi I'm using an esp32 at 40mhz with only one i2c device on the line, a led controller , LP55231. Randomly the led stop displaying at all, or make some of the led with random color when they should be black. and 2 secs later without changing anything, all is perfect. Attached a screen shot of my logi...
by enitalp
Fri Mar 10, 2017 7:12 pm
Forum: Sample Code
Topic: [Video] ESP32 - Using the core dump
Replies: 7
Views: 10967

Re: [Video] ESP32 - Using the core dump

Hi So i get a Dump in the console, put it in a file, and launch : python C:/ESP32-IDK-SDK/esp-idf/components/espcoredump/espcoredump.py info_corefile -t b64 -c D:/Dump.ESP32 F:/FunHouse/imagine/Main/ESP32/build/Imagine.elf and i get : espcoredump.py v0.1-dev Growing up stacks are not supported for n...
by enitalp
Fri Mar 10, 2017 5:23 pm
Forum: Sample Code
Topic: [Video] ESP32 - Using the core dump
Replies: 7
Views: 10967

Re: [Video] ESP32 - Using the core dump

Since some time, i'm not able to use a core dump :

Growing up stacks are not supported for now!

Did i changed a configuration somewhere is shouldn't have touched ?

Thanks
by enitalp
Fri Mar 03, 2017 8:18 pm
Forum: ESP-IDF
Topic: WIFI STA is some very fragile code
Replies: 3
Views: 6219

Re: WIFI STA is some very fragile code

Ok i can confirm 2 things. I'm not able to use wifi anymore without stalling the esp in the last 8 hours without any code change. I switched to my second esp32, and 4 secs later was connected to the wifi without any garbage in the log or crash, or stall with the same code. So it's not a code problem...
by enitalp
Fri Mar 03, 2017 2:55 pm
Forum: ESP-IDF
Topic: WIFI STA is some very fragile code
Replies: 3
Views: 6219

Re: WIFI STA is some very fragile code

Strange thing, the more i use my esp32, the less i'm able to use wifi. It's been a few hours since my last successfull connection. And the more i get garbage in my log. I Start to suspect highly my hardware, saw a lot of people complaining about the same thing with the SparkFun Thing, Ordered Some b...
by enitalp
Thu Mar 02, 2017 10:58 pm
Forum: ESP-IDF
Topic: WIFI STA is some very fragile code
Replies: 3
Views: 6219

WIFI STA is some very fragile code

I can't seem to stabilise the most common wifi STA code. I have multiple result. Connect fast and work, Connect very slow and work Random very fast hang Random hang after some time Ramdom crashes very fast Random crashes after some time Random hang after some time, No Crash : #######################...
by enitalp
Thu Mar 02, 2017 8:54 pm
Forum: Sample Code
Topic: Bluetooth Classic - How to implement it!
Replies: 11
Views: 17127

Re: Bluetooth Classic - How to implement it!

Stupid question :D

We have the SDK on github, and this forum and many people are contributing,

Why the BT and Wifi lib's code that cause most of the problems on the esp32, are not on github too, so people can contribute ?

Power to the people ;p
by enitalp
Thu Mar 02, 2017 5:17 pm
Forum: ESP-IDF
Topic: Include and C++ compatibility
Replies: 1
Views: 4131

Include and C++ compatibility

Those file can't be included directly in a cpp. #include <soc/rmt_struct.h> // Generate compilation error #include <esp_intr.h> // Generate link error This fix the problem. #ifdef __cplusplus extern "C" { #endif #include <soc/rmt_struct.h> #include <esp_intr.h> #ifdef __cplusplus } #endif This could...