ezsp 7.3.1

Ember ZNet Serial Protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Stack Token Changed Handler

crate::frame::parameters::handler!(
    0x000D,
    { token_address: u16 },
    impl {
        impl Handler {
            /// The address of the stack token that has changed.
            #[must_use]
            pub const fn token_address(&self) -> u16 {
                self.token_address
            }
        }
    }
);