feat(ledc): add ledc support on c61

This commit is contained in:
Chen Jichang
2024-08-08 19:34:10 +08:00
parent eff2e4eddd
commit 2e2cbd9aa8
16 changed files with 2824 additions and 88 deletions

View File

@@ -0,0 +1,17 @@
/*
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
*
* 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] = {
{
.sig_out0_idx = LEDC_LS_SIG_OUT0_IDX,
}
};