From: Tilman Sauerbeck Date: Mon, 17 Jun 2019 05:35:47 +0000 (+0200) Subject: bootloader: Configure system and peripheral clocks. X-Git-Url: http://git.code-monkey.de/?p=gps-watch.git;a=commitdiff_plain;h=f7d432a397a62bfc5cd60873ce4fb6aa6267a3ea bootloader: Configure system and peripheral clocks. --- diff --git a/src/bootloader/main.rs b/src/bootloader/main.rs index 198eb44..9a0cbb4 100644 --- a/src/bootloader/main.rs +++ b/src/bootloader/main.rs @@ -27,8 +27,12 @@ extern crate common; +use common::clock; + #[no_mangle] pub unsafe extern fn main() { + clock::configure(); + loop { } }