Merge arbiter and channel into sync

This commit is contained in:
Emil Fresk 2023-03-01 20:11:00 +01:00
parent c4ee8e8f02
commit 32b537aef6
16 changed files with 21 additions and 73 deletions

12
rtic-sync/src/lib.rs Normal file
View file

@ -0,0 +1,12 @@
//! Synchronization primitives for asynchronous contexts.
#![no_std]
#![deny(missing_docs)]
//deny_warnings_placeholder_for_ci
pub mod arbiter;
pub mod channel;
#[cfg(test)]
#[macro_use]
extern crate std;