bootloader: Import bootloader-final.ld.
[gps-watch.git] / src / bootloader / main.rs
index f54b4bcea02d8dbf161bf9f50fefb31e4a140699..0d2954909572a02f26432aef8147c5894dfaff47 100644 (file)
@@ -31,21 +31,51 @@ mod flash;
 mod bootloader;
 
 use common::clock;
+use common::systick;
+use common::port;
+use common::gpio;
 use common::usb_serial;
 
+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;
+
+fn bootloader_requested() -> bool {
+    let start_ticks = systick::now();
+
+    while !systick::has_timeout_ms(start_ticks, 3000) {
+        if (gpio::get(gpio::GPIOE) & (1 << 24)) == 0 {
+            return true;
+        }
+    }
+
+    false
+}
+
 #[no_mangle]
 pub unsafe extern fn main() {
     clock::configure();
+    systick::init();
 
-    if true {
-        usb_serial::init();
+    // Configure lower left push button.
+    gpio::set_direction(gpio::GPIOE, 1 << 24, gpio::Direction::Input);
+    port::set_af(port::PORTE, 24, 1);
+    port::set_pull(port::PORTE, 24, port::Pull::Up);
+
+    if bootloader_requested() {
+        usb_serial::init(0xf055, 0x635c);
 
         let mut b = bootloader::Bootloader::new();
 
-        loop {
-            b.run();
+        while b.run() {
         }
     }
+
+    jump_to_application(APPLICATION_ADDR);
 }