atsamd_hal/peripherals/clock/d5x/
mod.rs

1//! # Clocking API
2//!
3//! Users are encouraged to use [`v2`] variant of an API because of the richer
4//! feature set and safety.
5
6pub mod v1;
7pub use v1::*;
8
9pub mod v2;