embassy/embassy-stm32/src/rcc/u5/mod.rs

16 lines
213 B
Rust
Raw Normal View History

2021-11-02 17:03:56 +01:00
pub struct Config {}
impl Config {
pub fn new() -> Self {
Config {}
}
}
impl Default for Config {
fn default() -> Self {
Config::new()
}
}
2021-11-02 20:45:56 +01:00
pub unsafe fn init(_config: Config) {}