some things in rust are really hard

This commit is contained in:
2023-07-04 22:26:41 +02:00
parent 17c5b3d93e
commit 2ba93b9942
5 changed files with 143 additions and 91 deletions

View File

@ -170,9 +170,9 @@ fn main() {
let mut pus17_handler = PusService17TestHandler::new(
pus_test_rx,
tc_store.pool.clone(),
PusTmWithCdsShortHelper::new(PUS_APID),
tm_funnel_tx.clone(),
tm_store.clone(),
PUS_APID,
verif_reporter.clone(),
);
let mut srv_17_wrapper = Service17CustomWrapper {
@ -345,7 +345,7 @@ fn main() {
.spawn(move || loop {
let queue_empty = srv_17_wrapper.perform_operation();
if queue_empty {
thread::sleep(Duration::from_millis(400));
thread::sleep(Duration::from_millis(200));
}
})
.unwrap();