Worked on webee

This commit is contained in:
2023-08-25 10:03:51 +02:00
parent 3c5a7215d1
commit cf031b16e1

View File

@@ -4,15 +4,16 @@ use arduino_hal::prelude::*;
use embedded_hal::serial::{Read};
mod vector;
pub use vector::Vector;
pub struct Webee<USART, RX, TX> {
pub struct Webee<USART, RX, TX> where
USART: UsartOps<H, RX, TX>
{
webee: Usart<USART, RX, TX>,
}
enum SEND_CMD {
}
enum SEND_CMD {}
impl<USART, RX, TX> Webee<USART, RX, TX> {
const STOP: u8 = 0xFF;