Search found 4 matches
- Fri Oct 25, 2024 12:00 am
- Forum: ESP-IDF
- Topic: Component creation, best practices.
- Replies: 0
- Views: 309
Component creation, best practices.
I'm planning to advertise a component that I created, but I'm a bit concerned because I've only tested it with ESP-IDF 5.1.1, and I encountered errors when trying to run it on ESP-IDF 5.2.x. My question is: what steps should I follow to ensure this component works across all versions, for example, >...
- Mon Nov 06, 2023 1:58 am
- Forum: IDEs for ESP-IDF
- Topic: VSCode Extension does not show all IDF tags
- Replies: 1
- Views: 19604
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...
- Fri Sep 24, 2021 5:42 am
- Forum: ESP-IDF
- Topic: ESP32 CAM: gpio_install_isr_service failed (105)
- Replies: 3
- Views: 10917
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...
- Sat Jul 31, 2021 12:23 am
- Forum: ESP-IDF
- Topic: ESP32 CAM: gpio_install_isr_service failed (105)
- Replies: 3
- Views: 10917
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...