1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-24 22:13:52 +01:00

cpu/esp32/esp-idf/gpio: migration to ESP-IDF v5.4

This commit is contained in:
Gunar Schorcht 2025-03-02 11:36:50 +01:00
parent ece5e8eb88
commit 84ff968283
2 changed files with 3 additions and 24 deletions

View File

@ -2,9 +2,9 @@ MODULE = esp_idf_gpio
# source files to be compiled for this module
ESP32_SDK_SRC = \
components/driver/gpio.c \
components/driver/rtc_io.c \
components/driver/rtc_module.c \
components/esp_driver_gpio/src/gpio.c \
components/esp_driver_gpio/src/rtc_io.c \
components/esp_hw_support/rtc_module.c \
components/hal/gpio_hal.c \
components/soc/$(CPU_FAM)/gpio_periph.c \
#

View File

@ -1,21 +0,0 @@
#pragma once
#ifdef ESP_IDF_CODE
#include_next "driver/gpio.h"
#else
#include "hal/gpio_types.h"
#define GPIO_PIN_COUNT (SOC_GPIO_PIN_COUNT)
#endif
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
}
#endif