spp-rust 0.2.3

An implementation of the CCSDS 133.0-B-2 Recommended Standard
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![cfg_attr(not(test), no_std)]

pub const OCTET: usize = 8;
pub const MAX_DATA_SIZE: usize = 65536;
pub const PRIMARY_HEADER_SIZE: usize = 6 * OCTET;
pub const MAX_SP_SIZE: usize = MAX_DATA_SIZE + PRIMARY_HEADER_SIZE;

pub mod packet;
pub mod pri_header;
pub mod data;
pub mod errors;