mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-10 04:43:33 +00:00
feat(adc): support ADC oneshot and continuous mode on ESP32C5 and enable test
This commit is contained in:
20
components/soc/esp32c5/adc_periph.c
Normal file
20
components/soc/esp32c5/adc_periph.c
Normal file
@@ -0,0 +1,20 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include "soc/adc_periph.h"
|
||||
|
||||
/* Store IO number corresponding to the ADC channel number. */
|
||||
const int adc_channel_io_map[SOC_ADC_PERIPH_NUM][SOC_ADC_MAX_CHANNEL_NUM] = {
|
||||
/* ADC1 */
|
||||
{
|
||||
ADC1_CHANNEL_0_GPIO_NUM,
|
||||
ADC1_CHANNEL_1_GPIO_NUM,
|
||||
ADC1_CHANNEL_2_GPIO_NUM,
|
||||
ADC1_CHANNEL_3_GPIO_NUM,
|
||||
ADC1_CHANNEL_4_GPIO_NUM,
|
||||
ADC1_CHANNEL_5_GPIO_NUM,
|
||||
},
|
||||
};
|
Reference in New Issue
Block a user