mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-25 17:58:46 +00:00
14 lines
270 B
C
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
|