Search found 1 match

by gaotao
Thu Jun 02, 2022 6:17 am
Forum: ESP-IDF 中文讨论版
Topic: ESP32-S3使用DMA访问ADC提示ADC bitwidth not supported
Replies: 1
Views: 1962

ESP32-S3使用DMA访问ADC提示ADC bitwidth not supported

今天在使用ESP32-S3的ADC时,需要高速ADC采样,参考example中的持续采样代码设定了ADC,调用adc_digi_controller_configure(&digi_cfg)提示ADC bitwidth not supported。 调用部分代码如下: [Codebox] void ESP32ADC::setHighSpeedADC() { // adc_digi初始化 // controller初始化 adc_digi_init_config_t adc_dma_config = { .max_store_buf_size = 1024, .conv_num_each_int...