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

don't turn on gps unless we actually need it

parent 86d5c2a3
No related branches found
No related tags found
No related merge requests found
...@@ -40,7 +40,7 @@ mod app { ...@@ -40,7 +40,7 @@ mod app {
use usb_device::prelude::*; use usb_device::prelude::*;
use crate::{ use crate::{
config::{Config, GpsSetting, Maybe}, config::{Config, GpsSetting, Maybe, MaybeBlackHole},
gps::{GpsModule, GpsPos}, gps::{GpsModule, GpsPos},
radio::RadioManager, radio::RadioManager,
shell::Shell, shell::Shell,
...@@ -156,6 +156,7 @@ mod app { ...@@ -156,6 +156,7 @@ mod app {
// Setup GPS power // Setup GPS power
let mut gps_enable = gpioc.pc8.into_open_drain_output(); let mut gps_enable = gpioc.pc8.into_open_drain_output();
gps_enable.set_high(); // disable
// Setup GPS serial // Setup GPS serial
let pins = (gpioa.pa2, gpioa.pa3); let pins = (gpioa.pa2, gpioa.pa3);
...@@ -214,7 +215,13 @@ mod app { ...@@ -214,7 +215,13 @@ mod app {
Status::TxDisabled(false) Status::TxDisabled(false)
} else { } else {
green.set_high(); green.set_high();
gps_enable.set_low(); // enable GPS
if config.enable_transmit
&& (matches!(config.black_hole, MaybeBlackHole::Some(_))
|| matches!(config.gps, GpsSetting::Receiver))
{
gps_enable.set_low(); // enable GPS
}
Status::Normal Status::Normal
}; };
......
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