diff options
author | Carlo Lobrano <c.lobrano@gmail.com> | 2017-02-21 16:04:00 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2017-02-28 23:40:46 +0100 |
commit | a04525d9e167a44b8295af922114d34062e9feaf (patch) | |
tree | 985c536608b9ed7a5c2a28ea559f3a31e7898043 /data | |
parent | cfc21f4fc93ef041f5e9c660ce3221cdc2d20141 (diff) | |
download | external_libqmi-a04525d9e167a44b8295af922114d34062e9feaf.zip external_libqmi-a04525d9e167a44b8295af922114d34062e9feaf.tar.gz external_libqmi-a04525d9e167a44b8295af922114d34062e9feaf.tar.bz2 |
wda: extended wda set format message to enable QMUX
Added the following configurable values:
- upload datagram protocol
- download datagram protocol
- download datagram max size
- download max datagrams
- endpoint type
- endpoint interface number
According to last GobiNet from CodeAura project, it is necessary to set
the following values to enable multiple data connection through one
controller device:
- upload datagram protocol = QMAP
- download datagram protocol = QMAP
- download datagram max size = 32 (it seems working even without setting it)
- download max datagrams = 32768 (it seems working even without setting it)
- endpoint type = HSUSB (it seems working even without setting it)
- endpoint interface number = this depends on the modem, but it seems working
even without setting it
Diffstat (limited to 'data')
-rw-r--r-- | data/qmi-service-wda.json | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/data/qmi-service-wda.json b/data/qmi-service-wda.json index d15551d..35e6a9c 100644 --- a/data/qmi-service-wda.json +++ b/data/qmi-service-wda.json @@ -83,7 +83,18 @@ "mandatory" : "no", "type" : "TLV", "since" : "1.10", - "format" : "guint32" } ], + "format" : "guint32" }, + { "name" : "Endpoint Info", + "id" : "0x17", + "mandatory" : "no", + "type" : "TLV", + "since" : "1.18", + "format" : "sequence", + "contents" : [ { "name" : "Endpoint Type", + "format" : "guint32", + "public-format" : "QmiDataEndpointType"}, + { "name" : "Interface Number", + "format" : "guint32"}] }], "output" : [ { "common-ref" : "Operation Result" }, { "name" : "QoS Format", "id" : "0x10", |