2023-12-06 15:13:45 +08:00
|
|
|
/*
|
2025-01-03 18:00:50 +08:00
|
|
|
* SPDX-FileCopyrightText: 2024-2025 Espressif Systems (Shanghai) CO LTD
|
2023-12-06 15:13:45 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "esp_private/gdma.h"
|
|
|
|
#include "soc/bitscrambler_peri_select.h"
|
|
|
|
|
2025-01-03 18:00:50 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2023-12-06 15:13:45 +08:00
|
|
|
typedef struct {
|
|
|
|
gdma_trigger_t dma_trigger;
|
|
|
|
int bus;
|
|
|
|
} bitscrambler_periph_desc_t;
|
|
|
|
|
|
|
|
extern const bitscrambler_periph_desc_t g_bitscrambler_periph_desc[];
|
2025-01-03 18:00:50 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|