Search found 31 matches

by jeromeh
Fri Feb 24, 2017 12:59 pm
Forum: General Discussion
Topic: ULP execution flow
Replies: 16
Views: 20962

Re: ULP execution flow

I would be eager to see some pre-release if you don't mind...it doesn't need to be in pretty format...my project was stuck due to current ULP are not able to read GPIO input through RTC_GPIO_IN_REG. I'm trying to find out if using ADC can be a viable work-around. deep sleep / ULP example is finished...
by jeromeh
Fri Feb 24, 2017 2:12 am
Forum: General Discussion
Topic: Can ADC work in deep-sleep mode?
Replies: 4
Views: 7629

Re: Can ADC work in deep-sleep mode?

Thanks WiFive!

Feel it's really tough to work on ULP in such a time frame, seems to me ULP is really not a priority on ESP side currently...

WiFive wrote:ULP is able to perform an ADC read. Not supported by existing macro instructions. Is supported by binutils, but no docs.
by jeromeh
Thu Feb 23, 2017 8:25 am
Forum: General Discussion
Topic: esp32 时钟修改
Replies: 6
Views: 10567

Re: esp32 时钟修改

Any progress on supporting CPU frequency change recently? Hi roctwo, In the current version (and in 1.0) we don't support run-time changes to the CPU frequency. Switching CPU frequency is not difficult, but some changes need to be done to FreeRTOS tick routine, and also to the timekeeping routines. ...
by jeromeh
Thu Feb 23, 2017 7:26 am
Forum: General Discussion
Topic: How is the ULP coprocessor going to be programmed?
Replies: 16
Views: 26230

Re: How is the ULP coprocessor going to be programmed?

@uhrheber, how is your progress of using ULP for your project? Is is smooth? I'm trying to use esp32 on batter powered device too, but run into many different problems. I do have a way to generate ULP instructions using C macros. This may be used to write programs for the ULP with an assembly-like s...
by jeromeh
Thu Feb 23, 2017 1:35 am
Forum: General Discussion
Topic: Can ADC work in deep-sleep mode?
Replies: 4
Views: 7629

Re: Can ADC work in deep-sleep mode?

WiFive wrote:Yes with ULP. Not supported yet.
@WiFive, I'm not quite following your words...are you saying ADC is able to work in deep sleep mode but not with ULP?
by jeromeh
Wed Feb 22, 2017 8:30 am
Forum: General Discussion
Topic: Can ADC work in deep-sleep mode?
Replies: 4
Views: 7629

Can ADC work in deep-sleep mode?

I'm trying to understand if ADC can work in deep-sleep mode or not? Is there any example available if this is a supported use case?
by jeromeh
Wed Feb 22, 2017 7:41 am
Forum: General Discussion
Topic: ULP execution flow
Replies: 16
Views: 20962

Re: ULP execution flow

Any good new on this example? @ESP_igrr
by jeromeh
Wed Feb 08, 2017 3:00 am
Forum: General Discussion
Topic: ULP execution flow
Replies: 16
Views: 20962

Re: ULP execution flow

@igrr, are you back from vocation now? would you please help here?
by jeromeh
Mon Feb 06, 2017 1:28 pm
Forum: General Discussion
Topic: esp32 GPIO interrupt latency
Replies: 1
Views: 4574

Re: esp32 GPIO interrupt latency

oh...I realized that it might because I'm using a mongoose-os api to setup the interrupt handler...and there is a queue used by mongoose-os might causing problem like this.
by jeromeh
Sun Feb 05, 2017 8:31 am
Forum: General Discussion
Topic: esp32 GPIO interrupt latency
Replies: 1
Views: 4574

esp32 GPIO interrupt latency

Hi, I'm using a GPIO pin as a external interrupt, responding to negedge events. A event handler is registered and can be called correctly, but the interrupt latency seems pretty unpridictable. I'm setting another GPIO pin to high when entering the event handler, and clears it before leaving the hand...