From fb1838422279883a88004123fc061a13f1517088 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Wed, 7 Feb 2024 17:29:50 +0100 Subject: [PATCH] avoid warnings for static pools --- satrs-example/src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/satrs-example/src/main.rs b/satrs-example/src/main.rs index b829c35..113103c 100644 --- a/satrs-example/src/main.rs +++ b/satrs-example/src/main.rs @@ -307,6 +307,7 @@ fn static_tmtc_pool_main() { .expect("Joining PUS handler thread failed"); } +#[allow(dead_code)] fn dyn_tmtc_pool_main() { let (tc_source_tx, tc_source_rx) = channel(); let (tm_funnel_tx, tm_funnel_rx) = channel();