Files @ b33d1be6d118
Branch filter:

Location: CSY/reowolf/src/runtime2/mod.rs - annotation

b33d1be6d118 376 B application/rls-services+xml Show Source Show as Raw Download as Raw
Max Henger
Merge branch 'fix-compiler-bin-2' into 'master'

fix: add support for log level to bin-compiler

See merge request nl-cwi-csy/reowolf!10
#[macro_use] mod error;
mod store;
mod runtime;
mod component;
mod communication;
mod scheduler;
mod poll;
mod stdlib;
#[cfg(test)] mod tests;

pub use runtime::{Runtime, LogLevel};
pub(crate) use error::RtError;
pub(crate) use scheduler::SchedulerCtx;
pub(crate) use communication::{
    PortId,
    Message, ControlMessage, SyncMessage, DataMessage,
    SyncRoundDecision
};