fix: rename feature

This commit is contained in:
doryan 2025-08-10 21:29:11 +04:00
parent 6da908db14
commit 2e1bb877c6

View File

@ -10,7 +10,7 @@ use crate::{
SoftSerialWriter, SoftSerialWriter,
}; };
#[cfg(feature = "ring-buffer")] #[cfg(feature = "ring-buf")]
impl<const N: usize, P> SoftSerialWriter<P, &mut RingBuffer<N>> for HalfDuplexSerial<P> impl<const N: usize, P> SoftSerialWriter<P, &mut RingBuffer<N>> for HalfDuplexSerial<P>
where where
P: PinOps + StaticPinOps, P: PinOps + StaticPinOps,
@ -26,7 +26,7 @@ where
} }
} }
#[cfg(feature = "ring-buffer")] #[cfg(feature = "ring-buf")]
impl<const N: usize, P> SoftSerialReader<P, &mut RingBuffer<N>> for HalfDuplexSerial<P> impl<const N: usize, P> SoftSerialReader<P, &mut RingBuffer<N>> for HalfDuplexSerial<P>
where where
P: PinOps + StaticPinOps, P: PinOps + StaticPinOps,