ezsp 7.3.1

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

use crate::ember::zll::DataToken;

crate::frame::parameters::frame!(
    0x00BD,
    { data: DataToken },
    impl {
        impl Command {
            /// Creates command parameters.
            #[must_use]
            pub const fn new(data: DataToken) -> Self {
                Self { data }
            }
        }
    },
    {} => Zll(zll)::SetDataToken);