Files
esp-idf/components/hal/esp32c5/include/hal/gdma_ll.h
2024-06-12 15:28:40 +08:00

14 lines
270 B
C

/*
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once
#include "sdkconfig.h"
#if CONFIG_IDF_TARGET_ESP32C5_BETA3_VERSION
#include "hal/gdma_beta3_ll.h"
#else
#include "hal/ahb_dma_ll.h"
#endif