Search found 199 matches

by jumjum123
Mon Nov 14, 2016 12:02 pm
Forum: ESP-IDF
Topic: questions around new uart component
Replies: 3
Views: 7004

Re: questions around new uart component

Wow!, fully answered and very quick. :o Hopefully, your breath is back to normal :oops:
Answers are a big help for me.
Mapping of rx and tx to other pins is big.
No problem anymore to switch between terminal and other UART-devices.
Thanks a lot.
by jumjum123
Mon Nov 14, 2016 9:05 am
Forum: ESP-IDF
Topic: questions around new uart component
Replies: 3
Views: 7004

questions around new uart component

After seeing new files in ESP-IDF for uart, I tried to get my hands on. First step was to get a better understanding whats going on behind the curtain. As expected I have a lot of questionmarks, would be great if somebody could help - is it possible, to use UART2 without rx ? AFAIK with devkit only ...
by jumjum123
Tue Nov 01, 2016 11:32 pm
Forum: ESP-IDF
Topic: can't get vTaskSuspend running
Replies: 3
Views: 9636

Re: can't get vTaskSuspend running

Thanks for the feedback.
After changing the flag in menuconfig, I got suspend and resume running.
At least in my first Q&U testcase (Q&U is :? Quick&Ugly )
by jumjum123
Tue Oct 25, 2016 11:14 am
Forum: ESP-IDF
Topic: can't get vTaskSuspend running
Replies: 3
Views: 9636

can't get vTaskSuspend running

Trying to supend a task always results in panic. Any idea what I'm doing wrong ? TaskHandle_t handleTest = NULL; static void test(void *data){ vTaskDelay(10000 / portTICK_PERIOD_MS); ESP_LOGE("Test","will suspend now"); vTaskSuspend(handleTest); ESP_LOGE("Test","just suspended"); } int app_main(void...
by jumjum123
Tue Oct 25, 2016 11:05 am
Forum: ESP-IDF
Topic: How to use gpio_isr_register?
Replies: 46
Views: 63397

Re: How to use gpio_isr_register?

Thanks a lot for detailled feedback. Even simple things can be very complex :o
by jumjum123
Mon Oct 24, 2016 8:55 am
Forum: ESP-IDF
Topic: use of arduino-esp32 hal for esp-idf ?
Replies: 1
Views: 5226

use of arduino-esp32 hal for esp-idf ?

In repository are a lot of esp32-hal-xxx files.
Could those be used together with esp-idf for application running on dev board ?
by jumjum123
Mon Oct 24, 2016 8:36 am
Forum: ESP-IDF
Topic: How to use gpio_isr_register?
Replies: 46
Views: 63397

Re: How to use gpio_isr_register?

@Rudi, thanks for your detailled tour through gpio interrupts. I'm working on same problem during porting Javascript(Espruino) to the ESP32. After reading all your replies I still have some questions - what is gpio_pad_select_gpio for ? I'm getting a similiar result without this function - you added...
by jumjum123
Thu Oct 20, 2016 7:07 pm
Forum: Hardware
Topic: ESP32 HW SPI : Pins for MOSI, MISO, SCK , ( CS )
Replies: 4
Views: 49155

Re: ESP32 HW SPI : Pins for MOSI, MISO, SCK , ( CS )

Interesting question, do you have any software for VSPI ?
I could find some definitions for register etc. but no functions.
by jumjum123
Mon Oct 17, 2016 3:17 pm
Forum: ESP-IDF
Topic: system_adc1_read not available ?
Replies: 5
Views: 9257

system_adc1_read not available ?

Following ESP32_RTOS_SDK_API reference, system_adc11_read is the way to read analog values from GPIO pins.
What do I need to to, to get it running. Right now I cannot find a header file or something else.