nokia: N900 appears to need a longer port delay (rh #583691)

This commit is contained in:
Dan Williams
2010-07-09 12:35:36 -07:00
parent fe2145ddc4
commit 56665c19af

View File

@@ -54,6 +54,7 @@ grab_port (MMModem *modem,
MMGenericGsm *gsm = MM_GENERIC_GSM (modem);
MMPortType ptype = MM_PORT_TYPE_IGNORED;
MMPort *port = NULL;
gulong send_delay = 5000;
if (suggested_type == MM_PORT_TYPE_UNKNOWN) {
if (!mm_generic_gsm_get_at_port (gsm, MM_PORT_TYPE_PRIMARY))
@@ -71,6 +72,9 @@ grab_port (MMModem *modem,
mm_serial_parser_v1_e1_destroy);
}
/* N900 appears to need longer delay between port bytes */
g_object_set (G_OBJECT (port), MM_SERIAL_PORT_SEND_DELAY, send_delay, NULL);
return !!port;
}