esp_hal/analog/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
//! # Analog Peripherals
//!
//! ## Overview
//! The `analog` module provides drivers for the various analog peripherals
//! available on the device. For more information about a peripheral driver,
//! please refer to the relevant module documentation.

#[cfg(any(adc1, adc2))]
pub mod adc;
#[cfg(dac)]
pub mod dac;