Hi Djalal,

On 11/30/2016 06:31 AM, Djalal Harouni wrote:
Handle the previously added types in D-Bus.

Documentation for these values is in next patch.
---
  src/netmon.c | 28 ++++++++++++++++++++++++++++
  1 file changed, 28 insertions(+)


Tweaked the commit description and ...

diff --git a/src/netmon.c b/src/netmon.c
index eb18b9c..2a8c524 100644
--- a/src/netmon.c
+++ b/src/netmon.c
@@ -180,6 +180,34 @@ void ofono_netmon_serving_cell_notify(struct ofono_netmon 
*netmon,
                                        intval, uint8_t, DBUS_TYPE_BYTE);
                        break;

+               case OFONO_NETMON_INFO_RSCP:
+                       intval = va_arg(arglist, int);
+
+                       CELL_INFO_DICT_APPEND(&dict, "ReceivedSignalCodePower",
+                                       intval, uint8_t, DBUS_TYPE_BYTE);
+                       break;
+
+               case OFONO_NETMON_INFO_ECN0:
+                       intval = va_arg(arglist, int);
+
+                       CELL_INFO_DICT_APPEND(&dict, "ReceivedEnergyRatio",
+                                       intval, uint8_t, DBUS_TYPE_BYTE);
+                       break;
+
+               case OFONO_NETMON_INFO_RSRQ:
+                       intval = va_arg(arglist, int);
+
+                       CELL_INFO_DICT_APPEND(&dict, 
"ReferenceSignalReceivedQuality",
+                                       intval, uint8_t, DBUS_TYPE_BYTE);
+                       break;
+
+               case OFONO_NETMON_INFO_RSRP:
+                       intval = va_arg(arglist, int);
+
+                       CELL_INFO_DICT_APPEND(&dict, 
"ReferenceSignalReceivedPower",
+                                       intval, uint8_t, DBUS_TYPE_BYTE);
+                       break;
+

The above 2 CELL_INFO_DICT_APPEND lines were > 80 characters. So I amended the patch to fix that.

                case OFONO_NETMON_INFO_INVALID:
                        break;
                }


Applied, thanks!

Regards,
-Denis
_______________________________________________
ofono mailing list
ofono@ofono.org
https://lists.ofono.org/mailman/listinfo/ofono

Reply via email to