diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-07-24 10:36:00 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-07-24 11:56:25 +0200 |
commit | 1afd81e48cd48e453ef07602a2d393fb4760215c (patch) | |
tree | a7cd3ae02eb6eb9ab4988a31c476ac880684649d /data/qmi-service-nas.json | |
parent | c3d7be41de2865e5f3e73906085a7f13dfd5f8d9 (diff) | |
download | external_libqmi-1afd81e48cd48e453ef07602a2d393fb4760215c.zip external_libqmi-1afd81e48cd48e453ef07602a2d393fb4760215c.tar.gz external_libqmi-1afd81e48cd48e453ef07602a2d393fb4760215c.tar.bz2 |
nas: implement "Set Event Report" request/response
Diffstat (limited to 'data/qmi-service-nas.json')
-rw-r--r-- | data/qmi-service-nas.json | 119 |
1 files changed, 119 insertions, 0 deletions
diff --git a/data/qmi-service-nas.json b/data/qmi-service-nas.json index 597c093..80e57f5 100644 --- a/data/qmi-service-nas.json +++ b/data/qmi-service-nas.json @@ -18,6 +18,125 @@ "service" : "NAS", "id" : "0x0000", "version" : "1.0", + "output" : [ { "common-ref" : "Operation Result" } ] }, + + // ********************************************************************************* + { "name" : "Set Event Report", + "type" : "Message", + "service" : "NAS", + "id" : "0x0002", + "version" : "1.0", + "input" : [ { "name" : "Signal Strength Indicator", + "id" : "0x10", + "mandatory" : "no", + "type" : "TLV", + "format" : "sequence", + "contents" : [ { "name" : "Report", + "format" : "guint8", + "public-format" : "gboolean" }, + { "name" : "Thresholds", + "format" : "array", + "array-element" : { "format" : "gint8" } } ] }, + { "name" : "RF Band Information", + "id" : "0x11", + "mandatory" : "no", + "type" : "TLV", + "format" : "guint8", + "public-format" : "gboolean" }, + { "name" : "Registration Reject Reason", + "id" : "0x12", + "mandatory" : "no", + "type" : "TLV", + "format" : "guint8", + "public-format" : "gboolean" }, + { "name" : "RSSI Indicator", + "id" : "0x13", + "mandatory" : "no", + "type" : "TLV", + "format" : "sequence", + "contents" : [ { "name" : "Report", + "format" : "guint8", + "public-format" : "gboolean" }, + { "name" : "RSSI Delta", + "format" : "guint8" } ] }, + { "name" : "ECIO Indicator", + "id" : "0x14", + "mandatory" : "no", + "type" : "TLV", + "format" : "sequence", + "contents" : [ { "name" : "Report", + "format" : "guint8", + "public-format" : "gboolean" }, + { "name" : "ECIO Delta", + "format" : "guint8" } ] }, + { "name" : "IO Indicator", + "id" : "0x15", + "mandatory" : "no", + "type" : "TLV", + "format" : "sequence", + "contents" : [ { "name" : "Report", + "format" : "guint8", + "public-format" : "gboolean" }, + { "name" : "IO Delta", + "format" : "guint8" } ] }, + { "name" : "SINR Indicator", + "id" : "0x16", + "mandatory" : "no", + "type" : "TLV", + "format" : "sequence", + "contents" : [ { "name" : "Report", + "format" : "guint8", + "public-format" : "gboolean" }, + { "name" : "SINR Delta", + "format" : "guint8" } ] }, + { "name" : "Error Rate Indicator", + "id" : "0x17", + "mandatory" : "no", + "type" : "TLV", + "format" : "guint8", + "public-format" : "gboolean" }, + { "name" : "ECIO Threshold", + "id" : "0x19", + "mandatory" : "no", + "type" : "TLV", + "format" : "sequence", + "contents" : [ { "name" : "Report", + "format" : "guint8", + "public-format" : "gboolean" }, + { "name" : "Thresholds", + "format" : "array", + "array-element" : { "format" : "gint16" } } ] }, + { "name" : "SINR Threshold", + "id" : "0x1A", + "mandatory" : "no", + "type" : "TLV", + "format" : "sequence", + "contents" : [ { "name" : "Report", + "format" : "guint8", + "public-format" : "gboolean" }, + { "name" : "Thresholds", + "format" : "array", + "array-element" : { "format" : "guint8" } } ] }, + { "name" : "LTE SNR Delta", + "id" : "0x1B", + "mandatory" : "no", + "type" : "TLV", + "format" : "sequence", + "contents" : [ { "name" : "Report", + "format" : "guint8", + "public-format" : "gboolean" }, + { "name" : "SNR Delta", + "format" : "guint8" } ] }, + { "name" : "LTE RSRP Delta", + "id" : "0x1C", + "mandatory" : "no", + "type" : "TLV", + "format" : "sequence", + "contents" : [ { "name" : "Report", + "format" : "guint8", + "public-format" : "gboolean" }, + { "name" : "RSRP Delta", + "format" : "guint8" } ] } ], "output" : [ { "common-ref" : "Operation Result" } ] } ] |