X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=src%2Fapplication%2Fmain.rs;h=e11aaf71cc5a9f538c9794cf570f87f9ac245bf8;hb=ed56d89bbb0692755ed06f18d227d4d1e39e6b05;hp=f1eb522a739068dda8977821c694e7bf768d215a;hpb=b00dd201b1c26fbd72c4930e26e3420ad8c276a0;p=gps-watch.git diff --git a/src/application/main.rs b/src/application/main.rs index f1eb522..e11aaf7 100644 --- a/src/application/main.rs +++ b/src/application/main.rs @@ -30,6 +30,7 @@ extern crate common; mod uart0; use common::buffer::Buffer; +use common::ringbuf::Ringbuf; use common::clock; use common::systick; use common::port; @@ -43,6 +44,9 @@ use common::display; use common::gps; use common::screen; use common::time::Time; +use common::mx25l::Mx25l; +use common::shell::Shell; +use common::logger::Logger; extern { fn enable_interrupts(); @@ -120,6 +124,20 @@ fn configure_push_buttons() { port::set_pull(port::PORTE, 31, port::Pull::Up); } +fn uart0_try_read() -> Option { + extern { + static mut uart0_rx_buf: Ringbuf; + } + + unsafe { + if uart0_rx_buf.is_empty() { + None + } else { + Some(uart0_rx_buf.read()) + } + } +} + #[no_mangle] pub unsafe extern "C" fn _start() -> ! { clock::configure(); @@ -186,6 +204,13 @@ pub unsafe extern "C" fn _start() -> ! { nvic::enable_irq(12); // UART0 + let mut shell = Shell::new(&mut cdc_tx_buf); + + let mut mx25l = Mx25l::new(gpio::GPIOD, 1 << 0); + + let mut logger = Logger::new(&mut mx25l); + logger.init(); + let mut gps = gps::Gps::new(); let mut gps_has_fix = false; @@ -201,7 +226,7 @@ pub unsafe extern "C" fn _start() -> ! { let mut show_time = false; let old_gps_has_fix = gps_has_fix; - while gps.update(&mut tap) { + while gps.update(&mut tap, uart0_try_read) { prev_tap = tap; show_time = true; @@ -261,6 +286,8 @@ pub unsafe extern "C" fn _start() -> ! { } }); + shell.update(&mut logger); + if reset_requested() { nvic::system_reset(); }