2025-02-04 16:31:56 +01:00
|
|
|
mod method_register;
|
2025-02-04 17:08:04 +01:00
|
|
|
mod method_send_report;
|
2025-02-04 16:31:56 +01:00
|
|
|
|
|
|
|
|
use crate::define_protocol;
|
|
|
|
|
use crate::protocols::secure::method_register::register_raw_params;
|
2025-02-04 17:08:04 +01:00
|
|
|
use crate::protocols::secure::method_send_report::send_report_raw_params;
|
2025-02-04 16:31:56 +01:00
|
|
|
|
|
|
|
|
define_protocol!{
|
|
|
|
|
11() => {
|
2025-02-04 17:08:04 +01:00
|
|
|
0x01 => register_raw_params,
|
|
|
|
|
0x08 => send_report_raw_params
|
2025-02-04 16:31:56 +01:00
|
|
|
}
|
|
|
|
|
}
|