initial camera handling things

This commit is contained in:
lkoester
2024-04-16 08:30:55 +02:00
parent d9629dee38
commit efe686becf
18 changed files with 277 additions and 10 deletions

View File

@ -35,6 +35,7 @@ use crate::{
};
mod controller;
mod handlers;
mod interface;
mod logger;
mod pus;
@ -222,7 +223,7 @@ fn main() {
})
.unwrap();
info!("Starting PUS handler thread");
info!("Starting PUS handlers thread");
let pus_stop_signal = stop_signal.clone();
let jh_pus_handler = thread::Builder::new()
.name("ops-sat pus".to_string())
@ -249,5 +250,5 @@ fn main() {
.expect("Joining TM Funnel thread failed");
jh_pus_handler
.join()
.expect("Joining PUS handler thread failed");
.expect("Joining PUS handlers thread failed");
}