1 /* 2 * SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include "soc/ledc_periph.h" 8 #include "soc/gpio_sig_map.h" 9 10 /* 11 Bunch of constants for every LEDC peripheral: GPIO signals 12 */ 13 const ledc_signal_conn_t ledc_periph_signal[1] = { 14 { 15 .sig_out0_idx = LEDC_LS_SIG_OUT0_IDX, 16 } 17 }; 18