Search found 3 matches

by Mark_Son
Mon Nov 06, 2023 1:58 am
Forum: IDEs for ESP-IDF
Topic: VSCode Extension does not show all IDF tags
Replies: 1
Views: 15165

VSCode Extension does not show all IDF tags

I'm working in different projects that requires different versions, most specific 5.1.1, 4.4.4 and 4.3.1, the vscode extension is very useful to easily switch between them. In my old laptop i had two of them installed and working well (4.4.4 and 4.3.1) but when I was setting up the new workspace I s...
by Mark_Son
Fri Sep 24, 2021 5:42 am
Forum: ESP-IDF
Topic: ESP32 CAM: gpio_install_isr_service failed (105)
Replies: 3
Views: 9939

Re: ESP32 CAM: gpio_install_isr_service failed (105)

Just updating my journay with this error. I'm using enc28j60 as ethernet connection interface. Looking a little deep on his example code available on espressif's repo on github, i found that inside esp-idf/examples/ethernet/enc28j60/main/enc28j60_example_main.c we have a ESP_ERROR_CHECK(gpio_install...
by Mark_Son
Sat Jul 31, 2021 12:23 am
Forum: ESP-IDF
Topic: ESP32 CAM: gpio_install_isr_service failed (105)
Replies: 3
Views: 9939

Re: ESP32 CAM: gpio_install_isr_service failed (105)

It seems like have some GPIO ISR init happening in camera_init routine. To be more specific, gpio_isr_register is the problem. One is telling that you want a per-pin gpio interrupt and another is telling that you want just one event handler happening when any gpio interrupt happen. To avoid this you...