mirror of
https://github.com/linux-msm/qmic.git
synced 2024-11-23 17:54:01 +08:00
20 lines
275 B
Plaintext
20 lines
275 B
Plaintext
|
package test;
|
||
|
package test2;
|
||
|
|
||
|
struct qmi_result {
|
||
|
u16 result;
|
||
|
u16 error;
|
||
|
};
|
||
|
|
||
|
request test_request {
|
||
|
required u8 test_number = 0x12;
|
||
|
} = 0x23;
|
||
|
|
||
|
response test_response {
|
||
|
required qmi_result r = 2;
|
||
|
} = 043;
|
||
|
|
||
|
indication test_indication {
|
||
|
optional u64 value = 0x99;
|
||
|
} = 0x7;
|