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

crate::frame::parameters::frame!(
    0x00D1,
    {},
    { routing_shortcut_thresh: u8 } => Networking(networking)::GetRoutingShortcutThreshold,
    impl {
        impl Response {
            /// Returns the routing shortcut threshold.
            #[must_use]
            pub const fn routing_shortcut_thresh(&self) -> u8 {
                self.routing_shortcut_thresh
            }
        }
    }
);