rtic-sync: Remove unstable flag, and add defmt derives (#889)

This commit is contained in:
Emil Fresk 2024-02-23 08:38:10 +01:00 committed by GitHub
parent 8b2465ba37
commit 4a23c8d6da
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 39 additions and 13 deletions

View file

@ -3,6 +3,9 @@
#![no_std]
#![deny(missing_docs)]
#[cfg(feature = "defmt-03")]
use defmt_03 as defmt;
pub mod arbiter;
pub mod channel;
pub use portable_atomic;