mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-24 17:36:15 +00:00
18 lines
414 B
C
18 lines
414 B
C
/*
|
|
* SPDX-FileCopyrightText: 2020-2025 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include "soc/timer_periph.h"
|
|
|
|
const soc_timg_gptimer_signal_desc_t soc_timg_gptimer_signals[1][1] = {
|
|
[0] = {
|
|
[0] = {
|
|
.module_name = "TIMG0T0",
|
|
.parent_module = PERIPH_TIMG0_MODULE,
|
|
.irq_id = ETS_TG0_T0_LEVEL_INTR_SOURCE,
|
|
},
|
|
}
|
|
};
|