diff --git a/src/half_duplex_serial.rs b/src/half_duplex_serial.rs index 4d150fb..6ee83c4 100644 --- a/src/half_duplex_serial.rs +++ b/src/half_duplex_serial.rs @@ -10,10 +10,13 @@ use arduino_hal::{ Pin, PinMode, PinOps, }, }; -use avr_device::{asm::delay_cycles, interrupt}; +use avr_device::{ + asm::delay_cycles, + interrupt::{self, disable, enable}, +}; use embedded_hal::digital::{InputPin, OutputPin}; -use super::static_pins_impl::StaticPin; +use super::static_pins_impl::StaticPinOps; use heapless::Vec; pub struct HalfDuplexSerial
{
@@ -50,6 +53,9 @@ where
fn poll(&self) -> PollResult;
fn response(&self);
+ fn is_low(&self) -> bool;
+ fn is_high(&self) -> bool;
+
fn write_byte(&self, data: u8);
fn read_byte(&self) -> ReadByteResult;
@@ -74,33 +80,50 @@ where
P: PinOps + StaticPinOps,
{
fn poll(&self) -> PollResult {
- let pin_pos = 1u8 << P::PIN_NUM;
-
+ P::into_output();
P::into_input();
- if P::read() & pin_pos == 0 {
+ delay_us(SERIAL_TRANSMIT_DELAY_US / 2);
+
+ if self.is_low() {
+ P::into_pull_up_input();
+
return PollResult::Err(PollError::NotFound);
}
- delay_us(3);
+ P::into_pull_up_input();
+
+ delay_us(SERIAL_TRANSMIT_DELAY_US / 2);
+
+ if self.is_high() {
+ P::into_pull_up_input();
- if P::read() & pin_pos != 0 {
return PollResult::Err(PollError::NotReady);
}
- P::into_pullup_input();
+ while self.is_low() {}
PollResult::Ok(())
}
fn response(&self) {
- delay_us(1);
+ while self.is_low() {}
P::into_output();
- delay_us(4);
- P::into_pull_up_input();
+ delay_us(SERIAL_TRANSMIT_DELAY_US);
+ P::into_pull_up_input();
+ }
+
+ #[inline]
+ fn is_low(&self) -> bool {
+ (P::read() & (1 << P::PIN_NUM)) == 0
+ }
+
+ #[inline]
+ fn is_high(&self) -> bool {
+ (P::read() & (1 << P::PIN_NUM)) != 0
}
fn write_byte(&self, data: u8) {
diff --git a/src/main.rs b/src/main.rs
index f33830e..613785f 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -4,12 +4,13 @@
#![feature(abi_avr_interrupt)]
#![feature(asm_experimental_arch)]
#![feature(thread_local)]
+#![allow(clippy::wrong_self_convention)]
#[macro_use]
extern crate static_pins;
use arduino_hal::{
- delay_ms, delay_us,
+ delay_ms,
hal::{
pins,
port::{PD2, PD3, PD5},
@@ -30,14 +31,23 @@ use keyboard::*;
#[allow(unused)]
use panic_handler::*;
-// static mut SERIAL_BUFFER: Vec