X-Git-Url: http://git.code-monkey.de/?p=gps-watch.git;a=blobdiff_plain;f=src%2Fapplication%2Fmain.rs;h=dbd748c8e28013e25f5c62afdd8f24d68251ba86;hp=d2e391de174791a71f9e1324070ee6c9271c850d;hb=f33681815491184edca121e8005de0281aa611ac;hpb=8b09b780219fb53132e4271e4e71f2c779c47321 diff --git a/src/application/main.rs b/src/application/main.rs index d2e391d..dbd748c 100644 --- a/src/application/main.rs +++ b/src/application/main.rs @@ -27,6 +27,8 @@ extern crate common; +mod uart0; + use common::buffer::Buffer; use common::clock; use common::systick; @@ -34,8 +36,10 @@ use common::port; use common::gpio; use common::nvic; use common::i2c; +use common::uart; use common::usb_serial; use common::display; +use common::gps; extern { fn enable_interrupts(); @@ -46,6 +50,7 @@ extern { #[no_mangle] pub unsafe extern "C" fn _start() -> ! { clock::configure(); + clock::enable_osc0(); systick::init(); port::init(); @@ -61,6 +66,14 @@ pub unsafe extern "C" fn _start() -> ! { gpio::set_direction(gpio::GPIOB, 1 << 16, gpio::Direction::Output); port::set_af(port::PORTB, 16, 1); + // Configure pins for UART0. + port::set_af(port::PORTE, 20, 4); + port::set_af(port::PORTE, 21, 4); + + // Configure pin for the GPS's reset line. + gpio::set_direction(gpio::GPIOB, 1 << 1, gpio::Direction::Output); + port::set_af(port::PORTB, 1, 1); + // Configure upper right push button. gpio::set_direction(gpio::GPIOA, 1 << 12, gpio::Direction::Input); port::set_af(port::PORTA, 12, 1); @@ -78,11 +91,22 @@ pub unsafe extern "C" fn _start() -> ! { display.init(); display.clear(); + // Hold GPS in reset while configuring its UART. + gpio::clear(gpio::GPIOB, 1); + systick::delay_ms(50); + uart::configure(uart::UART0); + systick::delay_ms(50); + gpio::set(gpio::GPIOB, 1); + + nvic::enable_irq(12); // UART0 + + let mut gps = gps::Gps::new(); + loop { - systick::delay_ms(1000); + let mut tap = gps::TimeAndPos::new(); - cdc_tx_buf.write(b".\n"); - cdc_tx_buf.flush(); + while gps.update(&mut tap) { + } if (gpio::get(gpio::GPIOA) & (1 << 12)) == 0 { nvic::system_reset();