Skip to main content

hal_mik32/
adc.rs

1//! ADC HAL stub
2
3pub struct Adc;
4
5impl Adc {
6    pub fn new() -> Self {
7        Adc
8    }
9}