use crate::ember::PanId;
crate::frame::parameters::handler!(
0x00D2,
{ pan_id: PanId, channel: u8 },
impl {
impl Handler {
#[must_use]
pub const fn pan_id(&self) -> PanId {
self.pan_id
}
#[must_use]
pub const fn channel(&self) -> u8 {
self.channel
}
}
}
);