mirror of
https://github.com/linux-msm/qmic.git
synced 2026-02-25 13:11:34 -08:00
18 lines
311 B
Plaintext
18 lines
311 B
Plaintext
|
|
package test;
|
||
|
|
|
||
|
|
struct qmi_result {
|
||
|
|
u16 result;
|
||
|
|
u16 error;
|
||
|
|
};
|
||
|
|
|
||
|
|
request test_request {
|
||
|
|
optional u8 variable(5) = 0x1;
|
||
|
|
optional u16 fixed[5] = 0x2;
|
||
|
|
# The next field should have array_type VAR_LEN_ARRAY
|
||
|
|
optional u32 not_fixed(5) = 0x3;
|
||
|
|
} = 0x23;
|
||
|
|
|
||
|
|
response test_response {
|
||
|
|
required qmi_result r = 2;
|
||
|
|
} = 043;
|