1 /* 2 * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include "soc/sdm_periph.h" 8 #include "soc/gpio_sig_map.h" 9 10 const sigma_delta_signal_conn_t sigma_delta_periph_signals = { 11 .channels = { 12 [0] = { 13 GPIO_SD0_OUT_IDX 14 }, 15 [1] = { 16 GPIO_SD1_OUT_IDX 17 }, 18 [2] = { 19 GPIO_SD2_OUT_IDX 20 }, 21 [3] = { 22 GPIO_SD3_OUT_IDX 23 } 24 } 25 }; 26