esp_hal/analog/mod.rs
1//! # Analog Peripherals
2//!
3//! ## Overview
4//! The `analog` module provides drivers for the various analog peripherals
5//! available on the device. For more information about a peripheral driver,
6//! please refer to the relevant module documentation.
7
8#[cfg(any(adc1, adc2))]
9pub mod adc;
10#[cfg(dac)]
11pub mod dac;