mirror of
https://github.com/espressif/esp-idf
synced 2025-03-09 17:19:09 -04:00
25 lines
441 B
C
25 lines
441 B
C
/*
|
|
* SPDX-FileCopyrightText: 2024-2025 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#pragma once
|
|
|
|
#include "esp_private/gdma.h"
|
|
#include "soc/bitscrambler_peri_select.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct {
|
|
gdma_trigger_t dma_trigger;
|
|
int bus;
|
|
} bitscrambler_periph_desc_t;
|
|
|
|
extern const bitscrambler_periph_desc_t g_bitscrambler_periph_desc[];
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|