diff --git a/src/lib.rs b/src/lib.rs index 28d3314..22c5d24 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -46,28 +46,6 @@ where _pin: PhantomData {}, } } -} - -pub trait SoftSerial
-where - P: PinOps + StaticPinOps, -{ - fn poll(&self) -> PollResult; - fn response(&self); - - fn sync_reciever(&self); - fn sync_transmitter(&self); - - fn write_byte(&self, data: u8); - fn read_byte(&self) -> ReadByteResult; - - #[inline] - fn finish_write(&self) { - P::into_pull_up_input(); - while P::is_low() {} - } - -} pub fn poll(&self) -> PollResult { P::into_output();