The parameters for the AT command AT$QCPDPP must be swapped for PAP in order to make it work with an Option modem. Tested with a GTM382 development kit. No idea about CHAP parameters, left unchanged.
Signed-off-by: Benoît Monin --- drivers/hsomodem/gprs-context.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/hsomodem/gprs-context.c b/drivers/hsomodem/gprs-context.c index 08c662f..87b6a09 100644 --- a/drivers/hsomodem/gprs-context.c +++ b/drivers/hsomodem/gprs-context.c @@ -166,7 +166,7 @@ static void hso_gprs_activate_primary(struct ofono_gprs_context *gc, if (ctx->username[0] && ctx->password[0]) snprintf(buf, sizeof(buf), "AT$QCPDPP=%u,1,\"%s\",\"%s\"", - ctx->cid, ctx->username, ctx->password); + ctx->cid, ctx->password, ctx->username); else if (ctx->password[0]) snprintf(buf, sizeof(buf), "AT$QCPDPP=%u,2,,\"%s\"", ctx->cid, ctx->password); -- Une messagerie gratuite, garantie à vie et des services en plus, ça vous tente ? Je crée ma boîte mail www.laposte.net _______________________________________________ ofono mailing list [email protected] http://lists.ofono.org/listinfo/ofono
