2024-11-22 10:55:08 +08:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2019-06-06 14:20:39 +08:00
|
|
|
|
|
|
|
#include "soc/ledc_periph.h"
|
|
|
|
#include "soc/gpio_sig_map.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
Bunch of constants for every LEDC peripheral: GPIO signals
|
|
|
|
*/
|
|
|
|
const ledc_signal_conn_t ledc_periph_signal[2] = {
|
|
|
|
{
|
2024-11-22 10:55:08 +08:00
|
|
|
.sig_out0_idx = LEDC_HS_SIG_OUT0_IDX,
|
2019-06-06 14:20:39 +08:00
|
|
|
},
|
|
|
|
{
|
2024-11-22 10:55:08 +08:00
|
|
|
.sig_out0_idx = LEDC_LS_SIG_OUT0_IDX,
|
2019-06-06 14:20:39 +08:00
|
|
|
}
|
2020-11-10 18:40:01 +11:00
|
|
|
};
|