diff options
-rw-r--r-- | TODO | 2 | ||||
-rw-r--r-- | data/qmi-service-dms.json | 18 |
2 files changed, 20 insertions, 0 deletions
@@ -7,6 +7,8 @@ List of things left for later: 'max-size'. If the 'max-size' is short enough, we can just use arrays of gchars with a specific size directly in the input/output bundle. + * qmi-codegen: support new `digit-string' format type + * dms: Support 'Preferred Roaming List' TLV (0x13) in DMS/"Activate Manual". This TLV is based on an array of raw binary data which can be passed to the device over multiple messages, using a sequence number to identify each diff --git a/data/qmi-service-dms.json b/data/qmi-service-dms.json index 48e2e02..b857e62 100644 --- a/data/qmi-service-dms.json +++ b/data/qmi-service-dms.json @@ -463,6 +463,24 @@ "prerequisites" : [ { "common-ref" : "Success" } ] } ] }, // ********************************************************************************* + { "name" : "Set User Lock State", + "type" : "Message", + "service" : "DMS", + "id" : "0x0035", + "input" : [ { "name" : "Info", + "id" : "0x01", + "mandatory" : "yes", + "type" : "TLV", + "format" : "sequence", + "contents" : [ { "name" : "Enabled", + "format" : "guint8", + "public-format" : "gboolean" }, + { "name" : "Lock Code", + "format" : "string", + "fixed-size" : "4" } ] } ], + "output" : [ { "common-ref" : "Operation Result" } ] }, + + // ********************************************************************************* { "name" : "UIM Get ICCID", "type" : "Message", "service" : "DMS", |