Search found 58 matches

by gibson12345
Wed Sep 04, 2019 5:37 am
Forum: ESP-IDF
Topic: Wake up from sleep on ISR
Replies: 6
Views: 6274

Re: Wake up from sleep on ISR

I figured out the issue thanks everyone.

Cheers,
Gibson
by gibson12345
Wed Sep 04, 2019 5:37 am
Forum: ESP-IDF
Topic: espcoredump.py
Replies: 0
Views: 2099

espcoredump.py

Hey everyone, Trying to investigate a bug I'm having using espcoredump.py and I am getting this output and I'm unsure why. I've tried investigating into the python file itself but I'm a bit too unfamiliar with it to figure out what's going on. here is the output C:\esp\esp-idf\components\espcoredump...
by gibson12345
Wed Sep 04, 2019 2:16 am
Forum: ESP-IDF
Topic: Documentation site unavailable?
Replies: 2
Views: 2719

Re: Documentation site unavailable?

Hey Angus,

Thanks for the update. What was the reason for it being down?

Cheers,
Gibson
by gibson12345
Wed Sep 04, 2019 12:59 am
Forum: ESP-IDF
Topic: Documentation site unavailable?
Replies: 2
Views: 2719

Documentation site unavailable?

Hey everyone,

Been trying to look at some docs this morning and it seems the site : https://docs.espressif.com
is unreachable at the moment? Is there some planned maintenance or something that is causing this?

Cheers,
Gibson
by gibson12345
Wed Sep 04, 2019 12:13 am
Forum: ESP-IDF
Topic: Wake up from sleep on ISR
Replies: 6
Views: 6274

Re: Wake up from sleep on ISR

Hey WiFive, Correct the interrupt signal is configured to be low active so that's fine. I have tried the example light sleep code and it works just fine, as I stated above I have to interrupt working fine when it's awake and it wakes up off an interrupt just fine from a button or such but not from m...
by gibson12345
Tue Sep 03, 2019 11:08 pm
Forum: ESP-IDF
Topic: Wake up from sleep on ISR
Replies: 6
Views: 6274

Re: Wake up from sleep on ISR

Light sleep. Deep sleep required RTC Gpio correct?
by gibson12345
Tue Sep 03, 2019 4:39 am
Forum: ESP-IDF
Topic: Wake up from sleep on ISR
Replies: 6
Views: 6274

Wake up from sleep on ISR

Hey everyone, I've been trying to interface with an accelerometer to use as a way to wakeup from sleep if the device is shaken and also put it to sleep on an inactivity timer. I've managed to get the device to go to sleep on the timer just fine and I thought I had correctly enabled gpio wakeup with ...
by gibson12345
Mon Sep 02, 2019 11:59 pm
Forum: ESP-IDF
Topic: CMake include extra components
Replies: 11
Views: 17008

Re: CMake include extra components

Hey Angus,

Thanks again for you speedy replies and updates it really helps. Glad to hear that you guys plan to flesh it out a bit further in time hopefully I'll be able to get a broader understanding of how the new build system works.

Cheers,
Gibson
by gibson12345
Mon Sep 02, 2019 5:41 am
Forum: ESP-IDF
Topic: CMake include extra components
Replies: 11
Views: 17008

Re: CMake include extra components

I'm not quite sure I get what you mean for this but would that mean if all of the header files are self contained inside the component folder the include_dir would just need to be "." ?? Correct! (Some components have an "include" directory for the public headers and some private headers in "." whi...
by gibson12345
Mon Sep 02, 2019 4:22 am
Forum: ESP-IDF
Topic: CMake include extra components
Replies: 11
Views: 17008

Re: CMake include extra components

Hey Angus, INCLUDE_DIRS should be a list of the public header directories that are part of this component. So if esp8266 component also contains esp8266_wrapper.h then the directory contianing that headers needs to be listed here, not the directory that belongs to the other component. I'm not quite ...