From: Djalal Harouni <djalal(a)endocode.com>
Add more ofono netmon info types that will be served through the netmon
interface. The main user of this now will be the ublox modem.
RSCP: Received Signal Code Power
ECN0: Received Energy Ratio
RSRQ: Reference Signal Received Quality
RSRP: Reference Signal Received Power
OPERATOR: the operator
Patches using these types to follow.
---
include/netmon.h | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/include/netmon.h b/include/netmon.h
index ec8a2e1..abde225 100644
--- a/include/netmon.h
+++ b/include/netmon.h
@@ -59,6 +59,11 @@ enum ofono_netmon_info {
OFONO_NETMON_INFO_RSSI, /* int */
OFONO_NETMON_INFO_TIMING_ADVANCE, /* int */
OFONO_NETMON_INFO_PSC, /* int */
+ OFONO_NETMON_INFO_RSCP, /* int */
+ OFONO_NETMON_INFO_ECN0, /* int */
+ OFONO_NETMON_INFO_RSRQ, /* int */
+ OFONO_NETMON_INFO_RSRP, /* int */
+ OFONO_NETMON_INFO_OPERATOR, /* char *, up to 24 digits */
OFONO_NETMON_INFO_INVALID,
};
--
2.5.5