mirror of
https://github.com/espressif/esp-idf.git
synced 2026-04-27 19:13:21 +00:00
f2d62bba74
- Add intr_priority field to gdma_channel_t structure - Add intr_bind_name field to gdma_signal_conn_t for interrupt binding - Validate intr_priority during channel allocation (must be 0-3) - Use ESP_INTR_FLAG_SHARED_PRIVATE instead of ESP_INTR_FLAG_SHARED - Use esp_intr_alloc_info() with bind_by.name for shared interrupts - Add interrupt priority configuration test case - Update all gdma_periph.c files with pair-specific bind names (gdma_gXpY)
22 lines
491 B
C
22 lines
491 B
C
/*
|
|
* SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include "hal/gdma_periph.h"
|
|
|
|
const gdma_signal_conn_t gdma_periph_signals = {
|
|
.groups = {
|
|
[0] = {
|
|
.pairs = {
|
|
[0] = {
|
|
.rx_irq_id = ETS_DMA_CH0_INTR_SOURCE,
|
|
.tx_irq_id = ETS_DMA_CH0_INTR_SOURCE,
|
|
.name = "gdma_g0p0",
|
|
},
|
|
}
|
|
}
|
|
}
|
|
};
|