bootloader: Stop USB serial device before entering the application.
[gps-watch.git] / src / bootloader / main.rs
index d81da1532baa5b0b41f3a05f5f1adc7e1cf3d084..1a0a7cc3d53ebdf1194ec88bd11a3eec541837c7 100644 (file)
@@ -30,18 +30,31 @@ extern crate common;
 mod flash;
 mod bootloader;
 
+use common::register;
 use common::clock;
 use common::systick;
 use common::port;
 use common::gpio;
 use common::usb_serial;
 
+type Reg32 = register::Register<u32>;
+
 extern {
     fn jump_to_application(address: u32);
 }
 
+#[cfg(bootloader_type = "intermediate")]
 const APPLICATION_ADDR: u32 = 0x0;
 
+#[cfg(bootloader_type = "final")]
+const APPLICATION_ADDR: u32 = 0x8000;
+
+unsafe fn application_missing() -> bool {
+    let first_app_word = Reg32::new(APPLICATION_ADDR);
+
+    first_app_word.read() == 0xffffffff
+}
+
 fn bootloader_requested() -> bool {
     let start_ticks = systick::now();
 
@@ -64,13 +77,15 @@ pub unsafe extern fn main() {
     port::set_af(port::PORTE, 24, 1);
     port::set_pull(port::PORTE, 24, port::Pull::Up);
 
-    if bootloader_requested() {
+    if application_missing() || bootloader_requested() {
         usb_serial::init(0xf055, 0x635c);
 
         let mut b = bootloader::Bootloader::new();
 
-        while b.run() {
+        while b.run() || application_missing() {
         }
+
+        usb_serial::shutdown();
     }
 
     jump_to_application(APPLICATION_ADDR);