Type Alias esp_idf_svc::hal::sys::adc_digi_init_config_t
source · pub type adc_digi_init_config_t = adc_digi_init_config_s;
Expand description
@brief ADC DMA driver configuration
Aliased Type§
struct adc_digi_init_config_t {
pub max_store_buf_size: u32,
pub conv_num_each_intr: u32,
pub adc1_chan_mask: u32,
pub adc2_chan_mask: u32,
}
Fields§
§max_store_buf_size: u32
< Max length of the converted data that driver can store before they are processed.
conv_num_each_intr: u32
< Bytes of data that can be converted in 1 interrupt. This should be in multiples of SOC_ADC_DIGI_DATA_BYTES_PER_CONV
.
adc1_chan_mask: u32
< Channel list of ADC1 to be initialized.
adc2_chan_mask: u32
< Channel list of ADC2 to be initialized.