driver/gpio.h: No such file or directory

w3llschmidt
Posts: 8
Joined: Tue Jan 23, 2018 4:56 pm

driver/gpio.h: No such file or directory

Postby w3llschmidt » Mon Apr 04, 2022 7:14 pm

Hello Fellows,

all of my ESP-IDF v4.x libs want compile on ESP-IDF v5.0 anymore :o

Same error on all >

Code: Select all

fatal error: driver/gpio.h: No such file or directory
#include "driver/gpio.h"
I cant find out whats the cause is. :?: :?: :?:

Please help!

chegewara
Posts: 2306
Joined: Wed Jun 14, 2017 9:00 pm

Re: driver/gpio.h: No such file or directory

Postby chegewara » Mon Apr 04, 2022 9:25 pm

w3llschmidt wrote:I cant find out whats the cause is.
espressif decided to make our life miserable and changed dependency on most common component (driver/gpio).
Here you can find migration guide, but im not sure you find anything about this component:
https://docs.espressif.com/projects/esp ... index.html

ESP_Sprite
Posts: 9577
Joined: Thu Nov 26, 2015 4:08 am

Re: driver/gpio.h: No such file or directory

Postby ESP_Sprite » Tue Apr 05, 2022 2:39 am

In general, your components now need to indicate which other components they depend on. For instance:

Code: Select all

    idf_component_register(SRCS ${SOURCE_FILES}
                           REQUIRES drivers
                           INCLUDE_DIRS "src")

seancross
Posts: 10
Joined: Sun Jun 19, 2022 3:59 pm

Re: driver/gpio.h: No such file or directory

Postby seancross » Thu Jul 14, 2022 1:47 pm

It looks like the proper component is `driver`, not `drivers`:

Code: Select all

idf_component_register(SRC_DIRS "."
    REQUIRES driver
    INCLUDE_DIRS "."
    "include")

PJ_Nyachogo
Posts: 1
Joined: Tue Mar 07, 2023 1:58 pm

Re: driver/gpio.h: No such file or directory

Postby PJ_Nyachogo » Wed Apr 26, 2023 8:08 am

seancross wrote:
Thu Jul 14, 2022 1:47 pm
It looks like the proper component is `driver`, not `drivers`:

Code: Select all

idf_component_register(SRC_DIRS "."
    REQUIRES driver
    INCLUDE_DIRS "."
    "include")
Hi. this worked for me. Could you tell, where you got this information? I can't find a list or something in the programming guide

chegewara
Posts: 2306
Joined: Wed Jun 14, 2017 9:00 pm

Re: driver/gpio.h: No such file or directory

Postby chegewara » Thu Apr 27, 2023 2:22 am


Who is online

Users browsing this forum: No registered users and 139 guests