Skip to main content

Protocol

Struct Protocol 

Source
pub struct Protocol { /* private fields */ }
Expand description

Transport-agnostic protocol handler

This handles protocol parsing and command buffering. It does NOT handle transport connection/disconnection.

Implementations§

Source§

impl Protocol

Source

pub fn new(device_name: &'static str) -> Self

Create a new protocol handler

Source

pub fn device_name(&self) -> &str

Get device name

Source

pub fn is_connected(&self) -> bool

Check if connected (application-managed)

Source

pub fn set_connected(&mut self, connected: bool)

Set connection status (called by application)

Source

pub fn process_received_data(&mut self, data: &[u8])

Process incoming data from transport layer

This appends data to the internal buffer for parsing. Call receive_command() to extract parsed commands.

Transport Independence: This method accepts bytes from ANY source:

  • BLE notification data
  • USB CDC read buffer
  • UART RX buffer
  • WiFi socket data
Source

pub fn receive_command(&mut self) -> Option<Command>

Parse and consume the next command from the buffer

Returns Some(Command) if a complete, valid command was parsed. Returns None if buffer is empty or packet is incomplete/invalid.

Source

pub fn get_capabilities_data(&self, caps: &str) -> Vec<u8, 256>

Format capabilities JSON into byte buffer

Example capabilities string:

{
  "sensors": {"accel": true, "mag": true},
  "gpio": {"digital": 8, "pwm": 8},
  "display": {"matrix": true}
}

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.