From 87adfdf08fd680c1796d515edfc9112c5591f9ba Mon Sep 17 00:00:00 2001 From: doryan Date: Thu, 20 Mar 2025 21:49:18 +0400 Subject: [PATCH] refactor(small): rename method and trait --- src/half_duplex_serial.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/half_duplex_serial.rs b/src/half_duplex_serial.rs index 98e80e5..4d150fb 100644 --- a/src/half_duplex_serial.rs +++ b/src/half_duplex_serial.rs @@ -45,7 +45,7 @@ pub enum ReadByteError { pub trait SoftSerial

where - P: PinOps + StaticPin, + P: PinOps + StaticPinOps, { fn poll(&self) -> PollResult; fn response(&self); @@ -59,7 +59,7 @@ where impl

HalfDuplexSerial

where - P: PinOps + StaticPin, + P: PinOps + StaticPinOps, { #[inline] pub fn new(_pin: Pin, P>, exint: &EXINT) -> Self { @@ -71,7 +71,7 @@ where impl

SoftSerial

for HalfDuplexSerial

where - P: PinOps + StaticPin, + P: PinOps + StaticPinOps, { fn poll(&self) -> PollResult { let pin_pos = 1u8 << P::PIN_NUM; @@ -99,8 +99,8 @@ where P::into_output(); delay_us(4); + P::into_pull_up_input(); - P::into_pullup_input(); } fn write_byte(&self, data: u8) { @@ -139,7 +139,7 @@ where delay_us(SERIAL_TRANSMIT_DELAY_US); - P::into_pullup_input(); + P::into_pull_up_input(); } fn read_byte(&self) -> ReadByteResult {