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

crate::frame::parameters::frame!(
    0x0033,
    {},
    { aps_length: u8 } => Messaging(messaging)::MaximumPayloadLength,
    impl {
        impl Response {
            /// Returns the maximum payload length in bytes.
            #[must_use]
            pub const fn aps_length(&self) -> u8 {
                self.aps_length
            }
        }
    }
);