diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2013-07-01 11:05:10 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2013-07-04 13:25:03 +0200 |
commit | a212dfe758446e1668fcb8edb2bfa9f20a024572 (patch) | |
tree | 8f6e176b99b0498aff2e37aebc98926adbc464f8 /data | |
parent | 4bc0798c3e85354e3e30ffbfb33374fd2e003651 (diff) | |
download | external_libqmi-a212dfe758446e1668fcb8edb2bfa9f20a024572.zip external_libqmi-a212dfe758446e1668fcb8edb2bfa9f20a024572.tar.gz external_libqmi-a212dfe758446e1668fcb8edb2bfa9f20a024572.tar.bz2 |
pbm: setup generation of the PBM service support
Only 'Indication Register' message for now.
Diffstat (limited to 'data')
-rw-r--r-- | data/qmi-service-pbm.json | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/data/qmi-service-pbm.json b/data/qmi-service-pbm.json new file mode 100644 index 0000000..668ae9d --- /dev/null +++ b/data/qmi-service-pbm.json @@ -0,0 +1,36 @@ + +[ + // ********************************************************************************* + { "name" : "PBM", + "type" : "Service" }, + + // ********************************************************************************* + { "name" : "QMI Client PBM", + "type" : "Client" }, + + // ********************************************************************************* + { "name" : "QMI Message PBM", + "type" : "Message-ID-Enum" }, + + // ********************************************************************************* + { "name" : "Indication Register", + "type" : "Message", + "service" : "PBM", + "id" : "0x0001", + "version" : "1.0", + "input" : [ { "name" : "Event Registration Mask", + "id" : "0x01", + "mandatory" : "yes", + "type" : "TLV", + "format" : "guint32", + "public-format" : "QmiPbmEventRegistrationFlag" } ], + "output" : [ { "common-ref" : "Operation Result" }, + { "name" : "Event Registration Mask", + "id" : "0x10", + "mandatory" : "no", + "type" : "TLV", + "format" : "guint32", + "public-format" : "QmiPbmEventRegistrationFlag", + "prerequisites" : [ { "common-ref" : "Success" } ] } ] } + +] |