1 /* 2 * SPDX-FileCopyrightText: 2020-2021 Espressif Systems (Shanghai) CO LTD 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include "soc/timer_periph.h" 8 9 const timer_group_signal_conn_t timer_group_periph_signals = { 10 .groups = { 11 [0] = { 12 .module = PERIPH_TIMG0_MODULE, 13 .timer_irq_id = { 14 [0] = ETS_TG0_T0_LEVEL_INTR_SOURCE, 15 [1] = ETS_TG0_T1_LEVEL_INTR_SOURCE, 16 } 17 }, 18 [1] = { 19 .module = PERIPH_TIMG1_MODULE, 20 .timer_irq_id = { 21 [0] = ETS_TG1_T0_LEVEL_INTR_SOURCE, 22 [1] = ETS_TG1_T1_LEVEL_INTR_SOURCE, 23 } 24 } 25 } 26 }; 27