bootloader: Configure system and peripheral clocks.
authorTilman Sauerbeck <tilman@code-monkey.de>
Mon, 17 Jun 2019 05:35:47 +0000 (07:35 +0200)
committerTilman Sauerbeck <tilman@code-monkey.de>
Sun, 7 Jul 2019 07:58:43 +0000 (09:58 +0200)
src/bootloader/main.rs

index 198eb44e88355a21a44b746fb10d198a604a5054..9a0cbb4f48706007e934c35d35b7ffa1db38dcb3 100644 (file)
 
 extern crate common;
 
+use common::clock;
+
 #[no_mangle]
 pub unsafe extern fn main() {
+    clock::configure();
+
     loop {
     }
 }