ezsp 6.0.1

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

crate::frame::parameters::frame!(
    0x00E3,
    { has_long_up_time: bool },
    impl {
        impl Command {
            /// Creates command parameters.
            #[must_use]
            pub const fn new(has_long_up_time: bool) -> Self {
                Self { has_long_up_time }
            }
        }
    },
    {} => Wwah(wwah)::SetLongUptime);