aboutsummaryrefslogtreecommitdiff
path: root/plugins/mm-modem-nokia.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/mm-modem-nokia.c')
-rw-r--r--plugins/mm-modem-nokia.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/plugins/mm-modem-nokia.c b/plugins/mm-modem-nokia.c
index 56f4c1b..9476f61 100644
--- a/plugins/mm-modem-nokia.c
+++ b/plugins/mm-modem-nokia.c
@@ -120,6 +120,11 @@ get_property (GObject *object, guint prop_id,
case MM_GENERIC_GSM_PROP_POWER_DOWN_CMD:
g_value_set_string (value, "");
break;
+ case MM_GENERIC_GSM_PROP_INIT_CMD:
+ /* When initializing a Nokia phone, first enable the echo,
+ * and then disable it, so that we get it properly disabled */
+ g_value_set_string (value, "Z E1 E0 V1");
+ break;
default:
break;
}
@@ -136,6 +141,10 @@ mm_modem_nokia_class_init (MMModemNokiaClass *klass)
object_class->set_property = set_property;
g_object_class_override_property (object_class,
+ MM_GENERIC_GSM_PROP_INIT_CMD,
+ MM_GENERIC_GSM_INIT_CMD);
+
+ g_object_class_override_property (object_class,
MM_GENERIC_GSM_PROP_POWER_UP_CMD,
MM_GENERIC_GSM_POWER_UP_CMD);