fix:树莓派检测
This commit is contained in:
parent
f57506023f
commit
6faba28542
@ -10,12 +10,11 @@ use std::time;
|
|||||||
use serialport::DataBits::Eight;
|
use serialport::DataBits::Eight;
|
||||||
use tokio::sync::broadcast;
|
use tokio::sync::broadcast;
|
||||||
|
|
||||||
// Import GPIO only on Linux
|
|
||||||
#[cfg(target_os = "linux")]
|
#[cfg(feature = "gpio")]
|
||||||
use rppal::gpio::{Gpio, InputPin, Trigger};
|
use rppal::gpio::{Gpio, InputPin, Trigger};
|
||||||
|
|
||||||
// Import rand for non-Linux platforms for simulating data
|
#[cfg(not(feature = "gpio"))]
|
||||||
#[cfg(not(target_os = "linux"))]
|
|
||||||
use rand::Rng;
|
use rand::Rng;
|
||||||
|
|
||||||
use crate::gps::nmea::{parse_nmea_sentence, NmeaPosition};
|
use crate::gps::nmea::{parse_nmea_sentence, NmeaPosition};
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user