X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=src%2Fbootloader%2Fmain.rs;h=a7755030bb0f5da0bd11d0a1687de17f090cac8b;hb=HEAD;hp=ca459fdc2eccf1c406b52b6423e8d40aab307be9;hpb=ba2d74b93676c335eb41cdb6d75978cf20a9340a;p=gps-watch.git diff --git a/src/bootloader/main.rs b/src/bootloader/main.rs index ca459fd..a775503 100644 --- a/src/bootloader/main.rs +++ b/src/bootloader/main.rs @@ -22,7 +22,7 @@ */ #![no_std] -#![crate_type="staticlib"] +#![no_main] #[link(name="libcommon.rlib")] extern crate common; @@ -35,12 +35,16 @@ use common::clock; use common::systick; use common::port; use common::gpio; +use common::watchdog; use common::usb_serial; type Reg32 = register::Register; extern { - fn jump_to_application(address: u32); + fn enable_interrupts(); + fn disable_interrupts(); + + fn jump_to_application(address: u32) -> !; } #[cfg(bootloader_type = "intermediate")] @@ -61,11 +65,17 @@ unsafe fn application_missing() -> bool { first_app_word.read() == 0xffffffff } +#[cfg(bootloader_type = "intermediate")] +fn bootloader_requested() -> bool { + true +} + +#[cfg(bootloader_type = "final")] 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 { + if (gpio::get(gpio::GPIOE) & (1 << 31)) == 0 { return true; } } @@ -73,16 +83,26 @@ fn bootloader_requested() -> bool { false } +#[inline(never)] +#[panic_handler] +fn panic(_info: &core::panic::PanicInfo) -> ! { + loop { + } +} + #[no_mangle] -pub unsafe extern fn main() { +pub unsafe extern "C" fn _start() -> ! { + watchdog::disable(); clock::configure(); systick::init(); port::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); + // Configure middle left push button. + gpio::set_direction(gpio::GPIOE, 1 << 31, gpio::Direction::Input); + port::set_af(port::PORTE, 31, 1); + port::set_pull(port::PORTE, 31, port::Pull::Up); + + enable_interrupts(); if application_missing() || bootloader_requested() { usb_serial::init(0xf055, USB_PID); @@ -95,5 +115,9 @@ pub unsafe extern fn main() { usb_serial::shutdown(); } + disable_interrupts(); + + clock::reset(); + jump_to_application(APPLICATION_ADDR); }