Search found 3529 matches

by WiFive
Mon Jan 23, 2017 1:12 pm
Forum: General Discussion
Topic: difference between different wakeup
Replies: 1
Views: 3934

Re: difference between different wakeup

http://esp-idf.readthedocs.io/en/latest ... sleep.html

Is the ulp involved?
No
Is the main core really in deep sleep?
Yes
what about the power consumption while [esp_deep_sleep_enable_ext0_wakeup()]?
~20uA I think
by WiFive
Sun Jan 22, 2017 6:38 pm
Forum: General Discussion
Topic: Capacitive touch example?
Replies: 7
Views: 17076

Re: Capacitive touch example?

Yes this is probably not final version of the driver. Registers are beautiful though ;)
by WiFive
Sun Jan 22, 2017 12:00 pm
Forum: Showcase
Topic: ESP32 Webradio
Replies: 188
Views: 509505

Re: ESP32 Webradio

Interested in the i2s dac output resolution
by WiFive
Sun Jan 22, 2017 11:58 am
Forum: Showcase
Topic: ESP32 Webradio
Replies: 188
Views: 509505

Re: ESP32 Webradio

Image
by WiFive
Sun Jan 22, 2017 9:46 am
Forum: News
Topic: ESP-IDF 2.0
Replies: 29
Views: 77172

Re: ESP-IDF 2.0

Any update on:

ULP binutils
ADC characterization
Temp sensor
Hall sensor usage guide
PWM
PID
Audio libraries/examples
Expanded support for qio flash mode

Rev 1 silicon
PSRAM

RAM optimization goals/timeline
by WiFive
Sun Jan 22, 2017 7:14 am
Forum: General Discussion
Topic: Capacitive touch example?
Replies: 7
Views: 17076

Re: Capacitive touch example?

There is only one rtc interrupt so it has to be shared (similar to gpio interrupt). You could implement an isr service like gpio to have separate callbacks per pin. Arduino already does this so you could use that code.
by WiFive
Sun Jan 22, 2017 6:25 am
Forum: ESP-IDF
Topic: RMT: RX input and xRingBufferAddToQueueSetWrite ...
Replies: 4
Views: 7515

Re: RMT: RX input and xRingBufferAddToQueueSetWrite ...

Right I guess you could request getter functions for the semaphores or a compare function.
by WiFive
Sun Jan 22, 2017 5:58 am
Forum: ESP-IDF
Topic: RMT: RX input and xRingBufferAddToQueueSetWrite ...
Replies: 4
Views: 7515

Re: RMT: RX input and xRingBufferAddToQueueSetWrite ...

Yes I believe ringbuf library is made by @esp_sprite Once you receive the matching handle you can compare it to the handles you think it could be to figure out which member to operate on. But consider: http://www.freertos.org/Pend-on-multiple-rtos-objects.html#alternative_design_pattern which may or...
by WiFive
Sun Jan 22, 2017 3:20 am
Forum: Hardware
Topic: How to use LEDC PWM in low speed mode?
Replies: 11
Views: 20086

Re: How to use LEDC PWM in low speed mode?

WRITE_PERI_REG (LEDC_LSCH2_DUTY_REG, (dutyCycleG * DUTY_CYCLE_MAX / 100) << 4); WRITE_PERI_REG (LEDC_LSCH2_CONF1_REG, (1<<31)); WRITE_PERI_REG (LEDC_LSCH3_DUTY_REG, (dutyCycleB * DUTY_CYCLE_MAX / 100) << 4); WRITE_PERI_REG (LEDC_LSCH3_CONF1_REG, (1<<31)); WRITE_PERI_REG (LEDC_LSCH4_DUTY_REG, (dutyC...