2021-11-06 17:25:49 +08:00
|
|
|
/*
|
2022-01-18 10:32:56 +08:00
|
|
|
* SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD
|
2021-11-06 17:25:49 +08:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#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[1] = {
|
2024-11-22 10:55:08 +08:00
|
|
|
{
|
2021-11-06 17:25:49 +08:00
|
|
|
.sig_out0_idx = LEDC_LS_SIG_OUT0_IDX,
|
2024-11-22 10:55:08 +08:00
|
|
|
}
|
2021-11-06 17:25:49 +08:00
|
|
|
};
|