From e75fca93d86eb0d76fd558a8c123558676baded5 Mon Sep 17 00:00:00 2001 From: Djalal Harouni Date: Wed, 30 Nov 2016 13:31:39 +0100 Subject: [PATCH] include: add NETMON_INFO_{RSCP|ECN0|RSRQ|RSRP} 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 --- include/netmon.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/netmon.h b/include/netmon.h index ec8a2e1d..47d7a9c5 100644 --- a/include/netmon.h +++ b/include/netmon.h @@ -59,6 +59,10 @@ 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_INVALID, };