ezsp 6.0.1

Ember ZNet Serial Protocol
Documentation
use crate::ember::Eui64;
use crate::types::ByteSizedVec;

crate::frame::parameters::handler!(
    0x0092,
    { long_id: Eui64, last_hop_lqi: u8, last_hop_rssi: i8, message: ByteSizedVec<u8> },
    impl {
        impl Handler {
            /// The EUI64 of the sending node.
            #[must_use]
            pub const fn long_id(&self) -> Eui64 {
                self.long_id
            }

            /// The link quality from the node that last relayed the message.
            #[must_use]
            pub const fn last_hop_lqi(&self) -> u8 {
                self.last_hop_lqi
            }

            /// The energy level (in units of dBm) observed during the reception.
            #[must_use]
            pub const fn last_hop_rssi(&self) -> i8 {
                self.last_hop_rssi
            }

            /// The bootload message that was sent.
            #[must_use]
            pub fn message(&self) -> &[u8] {
                self.message.as_ref()
            }
        }
    }
);