ezsp 13.0.0

Ember ZNet Serial Protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Proxy table parameters.

pub use self::get_entry::Response as GetEntry;
pub use self::lookup::Response as Lookup;
pub use self::process_gp_pairing::Response as ProcessGpPairing;

pub mod get_entry;
pub mod lookup;
pub mod process_gp_pairing;

crate::frame::parameters::command_enum!(
    Command,
    GetEntry(get_entry::Command),
    Lookup(lookup::Command),
    ProcessGpPairing(process_gp_pairing::Command),
);

crate::frame::parameters::parameter_enum!(Response, GetEntry, Lookup, ProcessGpPairing);