bump spacepackets dependency

This commit is contained in:
2022-12-08 15:26:49 +01:00
parent 8a5fae1a95
commit 46039b8d1d
5 changed files with 15 additions and 11 deletions

View File

@ -148,7 +148,8 @@ impl<E: 'static> ReceivesTc for CcsdsDistributor<E> {
}),
));
}
let (sp_header, _) = SpHeader::from_be_bytes(tc_raw).map_err(|e| CcsdsError::PacketError(e))?;
let (sp_header, _) =
SpHeader::from_be_bytes(tc_raw).map_err(|e| CcsdsError::PacketError(e))?;
self.dispatch_ccsds(&sp_header, tc_raw)
}
}