ezsp 6.0.1

Ember ZNet Serial Protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Parameters for the [`Zll::rx_on_when_idle_get_active`](crate::Zll::rx_on_when_idle_get_active) command.

crate::frame::parameters::frame!(
    0x00D8,
    {},
    { zll_rx_on_when_idle_get_active: bool } => Zll(zll)::RxOnWhenIdleGetActive,
    impl {
        impl Response {
            /// ZLL radio on when idle mode is active?
            #[must_use]
            pub const fn zll_rx_on_when_idle_get_active(&self) -> bool {
                self.zll_rx_on_when_idle_get_active
            }
        }
    }
);