diff --git a/src/structures/ring_buffer.rs b/src/structures/ring_buffer.rs index 4b04404..8a9b6fb 100644 --- a/src/structures/ring_buffer.rs +++ b/src/structures/ring_buffer.rs @@ -110,7 +110,6 @@ where } fn write_bytes(&self, transmit_data: &mut RingBuffer) { - self.sync_transmitter(); >>::write_byte(self, N as u8); for _ in 0..N { @@ -131,7 +130,6 @@ where } fn read_bytes(&self, recieve_data: &mut RingBuffer) { - self.sync_reciever(); let byte = >>::read_byte(self); if let Ok(len) = byte {