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

crate::frame::parameters::frame!(
    0x00D7,
    {},
    { zll_operation_in_progress: bool } => Zll(zll)::OperationInProgress,
    impl {
        impl Response {
            /// Returns whether a ZLL operation is in progress.
            #[must_use]
            pub const fn zll_operation_in_progress(&self) -> bool {
                self.zll_operation_in_progress
            }
        }
    }
);