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 [`Networking::get_logical_channel`](crate::Networking::get_logical_channel) command.

crate::frame::parameters::frame!(
    0x00BA,
    {},
    { logical_channel: u8 } => Networking(networking)::GetLogicalChannel,
    impl {
        impl Response {
            /// Returns the logical channel.
            #[must_use]
            pub const fn logical_channel(&self) -> u8 {
                self.logical_channel
            }
        }
    }
);