aboutsummaryrefslogtreecommitdiff
path: root/rtic-sync/src/channel.rs
diff options
context:
space:
mode:
authorEmil Fresk <emil.fresk@gmail.com>2024-02-23 08:38:10 +0100
committerGitHub <noreply@github.com>2024-02-23 07:38:10 +0000
commit4a23c8d6da918b2ddd5a6b694b584fd2737833bb (patch)
treef089989910580ea186ce2fe97d40d1eb367d139e /rtic-sync/src/channel.rs
parent8b2465ba37a2781704e302f403069282a5562930 (diff)
rtic-sync: Remove unstable flag, and add defmt derives (#889)
Diffstat (limited to 'rtic-sync/src/channel.rs')
-rw-r--r--rtic-sync/src/channel.rs22
1 files changed, 21 insertions, 1 deletions
diff --git a/rtic-sync/src/channel.rs b/rtic-sync/src/channel.rs
index 4f4f0c2..64d09d1 100644
--- a/rtic-sync/src/channel.rs
+++ b/rtic-sync/src/channel.rs
@@ -18,6 +18,9 @@ use rtic_common::{
wait_queue::{Link, WaitQueue},
};
+#[cfg(feature = "defmt-03")]
+use crate::defmt;
+
/// An MPSC channel for use in no-alloc systems. `N` sets the size of the queue.
///
/// This channel uses critical sections, however there are extremely small and all `memcpy`
@@ -127,9 +130,11 @@ macro_rules! make_channel {
// -------- Sender
/// Error state for when the receiver has been dropped.
+#[cfg_attr(feature = "defmt-03", derive(defmt::Format))]
pub struct NoReceiver<T>(pub T);
/// Errors that 'try_send` can have.
+#[cfg_attr(feature = "defmt-03", derive(defmt::Format))]
pub enum TrySendError<T> {
/// Error state for when the receiver has been dropped.
NoReceiver(T),
@@ -199,6 +204,13 @@ impl<'a, T, const N: usize> core::fmt::Debug for Sender<'a, T, N> {
}
}
+#[cfg(feature = "defmt-03")]
+impl<'a, T, const N: usize> defmt::Format for Sender<'a, T, N> {
+ fn format(&self, f: defmt::Formatter) {
+ defmt::write!(f, "Sender",)
+ }
+}
+
impl<'a, T, const N: usize> Sender<'a, T, N> {
#[inline(always)]
fn send_footer(&mut self, idx: u8, val: T) {
@@ -382,8 +394,16 @@ impl<'a, T, const N: usize> core::fmt::Debug for Receiver<'a, T, N> {
}
}
+#[cfg(feature = "defmt-03")]
+impl<'a, T, const N: usize> defmt::Format for Receiver<'a, T, N> {
+ fn format(&self, f: defmt::Formatter) {
+ defmt::write!(f, "Receiver",)
+ }
+}
+
/// Possible receive errors.
-#[derive(Debug, PartialEq, Eq)]
+#[cfg_attr(feature = "defmt-03", derive(defmt::Format))]
+#[derive(Debug, PartialEq, Eq, Clone, Copy)]
pub enum ReceiveError {
/// Error state for when all senders has been dropped.
NoSender,