37 lines
1.2 KiB
Rust
37 lines
1.2 KiB
Rust
//! # Core components of the Flight Software Rust Crate (FSRC) collection
|
|
//!
|
|
//! This is a collection of Rust crates which can be used to build On-Board Software for remote
|
|
//! systems like satellites of rovers. It has special support for space tailored protocols
|
|
//! like the ones provided by CCSDS and ECSS.
|
|
//!
|
|
//! The crates can generally be used in a `no_std` environment, but some crates expect that the
|
|
//! [alloc](https://doc.rust-lang.org/alloc) crate is available to allow boxed trait objects.
|
|
//! These are used to supply user code to the crates.
|
|
#![no_std]
|
|
#![cfg_attr(doc_cfg, feature(doc_cfg))]
|
|
#[cfg(feature = "alloc")]
|
|
extern crate alloc;
|
|
#[cfg(feature = "alloc")]
|
|
extern crate downcast_rs;
|
|
#[cfg(any(feature = "std", test))]
|
|
extern crate std;
|
|
|
|
pub mod error;
|
|
#[cfg(feature = "alloc")]
|
|
#[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))]
|
|
pub mod event_man;
|
|
pub mod events;
|
|
#[cfg(feature = "std")]
|
|
#[cfg_attr(doc_cfg, doc(cfg(feature = "std")))]
|
|
pub mod executable;
|
|
pub mod hal;
|
|
pub mod objects;
|
|
pub mod params;
|
|
#[cfg(feature = "alloc")]
|
|
#[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))]
|
|
pub mod pool;
|
|
pub mod pus;
|
|
pub mod res_code;
|
|
pub mod seq_count;
|
|
pub mod tmtc;
|