1
 2
 3
 4
 5
 6
 7
 8
 9
10
//! [ADF4351](https://www.analog.com/en/products/adf4351.html) HAL driver.
//! See [examples](https://github.com/andreyk0/adf4351-rs/tree/master/examples)

#![no_std]

pub mod config;
pub mod constants;
pub mod device;
pub mod errors;
pub mod register;