application: Define UART0_IRQHandler().
[gps-watch.git] / src / application / main.rs
index d2e391de174791a71f9e1324070ee6c9271c850d..dffa4ee189ebeb1e724057499e0a0b095519b05f 100644 (file)
@@ -27,6 +27,8 @@
 
 extern crate common;
 
+mod uart0;
+
 use common::buffer::Buffer;
 use common::clock;
 use common::systick;
@@ -46,6 +48,7 @@ extern {
 #[no_mangle]
 pub unsafe extern "C" fn _start() -> ! {
     clock::configure();
+    clock::enable_osc0();
     systick::init();
     port::init();