diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2015-02-07 18:59:05 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2015-02-07 19:07:47 +0100 |
commit | 22628a69dad6a1c4b0400dacf1c13c48425faf69 (patch) | |
tree | 39340fb240c97d0e13a8ad98a86a1413934e6ef1 /data | |
parent | 45ab1a6d81457dbbedaf24758978dcb725e8ca99 (diff) | |
download | external_libqmi-22628a69dad6a1c4b0400dacf1c13c48425faf69.zip external_libqmi-22628a69dad6a1c4b0400dacf1c13c48425faf69.tar.gz external_libqmi-22628a69dad6a1c4b0400dacf1c13c48425faf69.tar.bz2 |
dms: new 'DMS Set FCC Authentication' message
Dell-branded Sierra modems, like the Dell DW5570 (Sierra Wireless MC8805) need
this specific command before they can be put in 'online' mode:
$ sudo qmicli -d /dev/cdc-wdm1 --dms-get-operating-mode
[/dev/cdc-wdm1] Operating mode retrieved:
Mode: 'low-power'
HW restricted: 'no'
$ sudo qmicli -d /dev/cdc-wdm1 --dms-set-fcc-authentication
[/dev/cdc-wdm1] Successfully set FCC authentication
$ sudo qmicli -d /dev/cdc-wdm1 --dms-get-operating-mode
[/dev/cdc-wdm1] Operating mode retrieved:
Mode: 'online'
HW restricted: 'no'
https://bugzilla.kernel.org/show_bug.cgi?id=92101
Diffstat (limited to 'data')
-rw-r--r-- | data/qmi-service-dms.json | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/data/qmi-service-dms.json b/data/qmi-service-dms.json index a6cf57e..c62b431 100644 --- a/data/qmi-service-dms.json +++ b/data/qmi-service-dms.json @@ -1169,6 +1169,14 @@ "type" : "TLV", "format" : "string", "fixed-size" : "6" } ], + "output" : [ { "common-ref" : "Operation Result" } ] }, + + // ********************************************************************************* + { "name" : "Set FCC Authentication", + "type" : "Message", + "service" : "DMS", + "id" : "0x555F", + "version" : "1.0", "output" : [ { "common-ref" : "Operation Result" } ] } ] |