Files
esp-idf/components/soc/esp32c5/sdm_periph.c

29 lines
656 B
C
Raw Normal View History

2024-07-10 11:46:24 +08:00
/*
2025-08-07 10:55:52 +08:00
* SPDX-FileCopyrightText: 2022-2025 Espressif Systems (Shanghai) CO LTD
2024-07-10 11:46:24 +08:00
*
* SPDX-License-Identifier: Apache-2.0
*/
#include "soc/sdm_periph.h"
#include "soc/gpio_sig_map.h"
2025-08-07 10:55:52 +08:00
const soc_sdm_signal_desc_t soc_sdm_signals[1] = {
[0] = {
.module_name = "SDM0",
.channels = {
[0] = {
.sig_id_matrix = GPIO_SD0_OUT_IDX
},
[1] = {
.sig_id_matrix = GPIO_SD1_OUT_IDX
},
[2] = {
.sig_id_matrix = GPIO_SD2_OUT_IDX
},
[3] = {
.sig_id_matrix = GPIO_SD3_OUT_IDX
}
2024-07-10 11:46:24 +08:00
}
}
};