added some full stops

This commit is contained in:
Robin Müller 2022-07-31 13:32:11 +02:00
parent 38df1c2335
commit b93950bb2e
No known key found for this signature in database
GPG Key ID: 71B58F8A3CDFA9AC

View File

@ -7,11 +7,11 @@ use serde::{Deserialize, Serialize};
pub type CrcType = u16;
/// CRC algorithm used by the PUS standard
/// CRC algorithm used by the PUS standard.
pub const CRC_CCITT_FALSE: Crc<u16> = Crc::<u16>::new(&CRC_16_IBM_3740);
pub const CCSDS_HEADER_LEN: usize = size_of::<crate::zc::SpHeader>();
/// All PUS versions. Only PUS C is supported by this library
/// All PUS versions. Only PUS C is supported by this library.
#[derive(PartialEq, Copy, Clone, Serialize, Deserialize, Debug)]
pub enum PusVersion {
EsaPus = 0,