diff --git a/satrs-example/src/event_manager.rs b/satrs-example/src/event_manager.rs index 2c7574b..a011ece 100644 --- a/satrs-example/src/event_manager.rs +++ b/satrs-example/src/event_manager.rs @@ -2,6 +2,8 @@ use models::{ccsds::CcsdsTmPacketOwned, control, ComponentId, Event, Message}; use crate::ccsds::pack_ccsds_tm_packet_for_now; +// TODO: We should add the capability to enable/disable the TM generation of individual events and +// event groups as well. pub struct EventManager { pub ctrl_rx: std::sync::mpsc::Receiver, pub tm_tx: std::sync::mpsc::SyncSender, diff --git a/satrs/src/params.rs b/satrs/src/params.rs index c9d4280..8c414b6 100644 --- a/satrs/src/params.rs +++ b/satrs/src/params.rs @@ -1112,7 +1112,6 @@ mod tests { let mut buf = [0; 1]; praw.write_to_be_bytes(&mut buf) .expect("writing to buffer failed"); - buf[0] = 200; } #[test]