fmt
All checks were successful
Rust/sat-rs/pipeline/pr-main This commit looks good

This commit is contained in:
Robin Müller 2024-04-14 19:29:30 +02:00
parent a5a39730f3
commit 2011586478
Signed by: muellerr
GPG Key ID: A649FB78196E3849

View File

@ -7,13 +7,13 @@
//! all received telecommands are sent to a special handler object called TC source. Using
//! a design like this makes it simpler to add new TC packet sources or new telemetry generators:
//! They only need to send the received and generated data to these objects.
#[cfg(feature = "std")]
use crate::queue::GenericSendError;
#[cfg(feature = "alloc")]
use downcast_rs::{impl_downcast, Downcast};
use spacepackets::SpHeader;
#[cfg(feature = "std")]
use std::sync::mpsc;
#[cfg(feature = "std")]
use crate::queue::GenericSendError;
#[cfg(feature = "std")]
pub mod tc_helper;