Skip to content
Snippets Groups Projects
Commit c7a42e95 authored by Stephen D's avatar Stephen D
Browse files

rev 2 gps

parent b6337a2a
No related branches found
No related tags found
No related merge requests found
...@@ -13,14 +13,14 @@ mod status; ...@@ -13,14 +13,14 @@ mod status;
pub const MAX_PACKET_LEN: usize = 8191; pub const MAX_PACKET_LEN: usize = 8191;
#[rtic::app(device = stm32f4xx_hal::pac, peripherals = true, dispatchers = [USART2, USART6])] #[rtic::app(device = stm32f4xx_hal::pac, peripherals = true, dispatchers = [USART6])]
mod app { mod app {
use cortex_m::singleton; use cortex_m::singleton;
use hal::{ use hal::{
flash::LockedFlash, flash::LockedFlash,
gpio, gpio,
otg_fs::{UsbBus, UsbBusType, USB}, otg_fs::{UsbBus, UsbBusType, USB},
pac::USART1, pac::USART2,
prelude::*, prelude::*,
rcc::{Clocks, Rcc}, rcc::{Clocks, Rcc},
serial::{self, Serial}, serial::{self, Serial},
...@@ -62,7 +62,7 @@ mod app { ...@@ -62,7 +62,7 @@ mod app {
struct Local { struct Local {
green: gpio::Pin<'B', 15, gpio::Output>, green: gpio::Pin<'B', 15, gpio::Output>,
usb_detect: gpio::Pin<'A', 5, gpio::Input>, usb_detect: gpio::Pin<'A', 5, gpio::Input>,
gps_serial: Serial<USART1>, gps_serial: Serial<USART2>,
flash: LockedFlash, flash: LockedFlash,
buf: &'static mut [u8; MAX_PACKET_LEN], buf: &'static mut [u8; MAX_PACKET_LEN],
} }
...@@ -95,6 +95,7 @@ mod app { ...@@ -95,6 +95,7 @@ mod app {
let dp = ctx.device; let dp = ctx.device;
let gpioa = dp.GPIOA.split(); let gpioa = dp.GPIOA.split();
let gpiob = dp.GPIOB.split(); let gpiob = dp.GPIOB.split();
let gpioc = dp.GPIOC.split();
let clocks = setup_clocks(dp.RCC.constrain()); let clocks = setup_clocks(dp.RCC.constrain());
...@@ -138,10 +139,13 @@ mod app { ...@@ -138,10 +139,13 @@ mod app {
radio radio
}; };
// Setup GPS power
let mut gps_enable = gpioc.pc8.into_open_drain_output();
// Setup GPS serial // Setup GPS serial
let pins = (gpioa.pa9, gpioa.pa10); let pins = (gpioa.pa2, gpioa.pa3);
let mut gps_serial = Serial::new( let mut gps_serial = Serial::new(
dp.USART1, dp.USART2,
pins, pins,
serial::Config::default() serial::Config::default()
.baudrate(9600.bps()) .baudrate(9600.bps())
...@@ -193,6 +197,7 @@ mod app { ...@@ -193,6 +197,7 @@ mod app {
Status::TxDisabled(false) Status::TxDisabled(false)
} else { } else {
green.set_high(); green.set_high();
gps_enable.set_low(); // enable GPS
Status::Normal Status::Normal
}; };
...@@ -226,7 +231,7 @@ mod app { ...@@ -226,7 +231,7 @@ mod app {
) )
} }
#[task(priority = 3, local = [], shared = [red, radio, config, status])] #[task(priority = 2, local = [], shared = [red, radio, config, status])]
fn radio_tick(mut ctx: radio_tick::Context) { fn radio_tick(mut ctx: radio_tick::Context) {
(ctx.shared.radio, ctx.shared.config).lock(|r, c| { (ctx.shared.radio, ctx.shared.config).lock(|r, c| {
r.as_mut() r.as_mut()
...@@ -311,7 +316,7 @@ mod app { ...@@ -311,7 +316,7 @@ mod app {
} }
} }
#[task(priority = 3, local = [green, usb_detect], shared = [red, status])] #[task(priority = 2, local = [green, usb_detect], shared = [red, status])]
fn led_handler(mut ctx: led_handler::Context) { fn led_handler(mut ctx: led_handler::Context) {
led_handler::spawn_after(LED_BLINK_RATE.millis()).unwrap(); led_handler::spawn_after(LED_BLINK_RATE.millis()).unwrap();
...@@ -342,7 +347,7 @@ mod app { ...@@ -342,7 +347,7 @@ mod app {
}); });
} }
#[task(binds=USART1, priority = 3, shared=[gps], local=[gps_serial])] #[task(binds=USART2, priority = 3, shared=[gps], local=[gps_serial])]
fn gps_uart(mut ctx: gps_uart::Context) { fn gps_uart(mut ctx: gps_uart::Context) {
let gps_serial = ctx.local.gps_serial; let gps_serial = ctx.local.gps_serial;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment