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<N>) {
-        self.sync_transmitter();
         <Self as SoftSerialWriter<P, &mut RingBuffer<N>>>::write_byte(self, N as u8);
 
         for _ in 0..N {
@@ -131,7 +130,6 @@ where
     }
 
     fn read_bytes(&self, recieve_data: &mut RingBuffer<N>) {
-        self.sync_reciever();
         let byte = <Self as SoftSerialReader<P, &mut RingBuffer<N>>>::read_byte(self);
 
         if let Ok(len) = byte {