diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-08-24 11:39:19 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-08-24 12:32:28 +0200 |
commit | d9ea4a304c06d28c5f8d780abe6f57cc179ba2a8 (patch) | |
tree | 045dfade86a05d0c7428991c1162e3d8dc788832 /plugins/huawei/mm-plugin-huawei.c | |
parent | d74336e96dc24b578324f45d57e108d686a95df5 (diff) |
at-serial-port: allow sending 'raw' commands
Commands treated as 'raw' won't get the 'AT' prefix and will also not get the
trailing carriage return.
Diffstat (limited to 'plugins/huawei/mm-plugin-huawei.c')
-rw-r--r-- | plugins/huawei/mm-plugin-huawei.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/huawei/mm-plugin-huawei.c b/plugins/huawei/mm-plugin-huawei.c index f699f2b4..05e25965 100644 --- a/plugins/huawei/mm-plugin-huawei.c +++ b/plugins/huawei/mm-plugin-huawei.c @@ -213,6 +213,7 @@ huawei_custom_init_step (HuaweiCustomInitContext *ctx) ctx->port, "AT^CURC=0", 3, + FALSE, /* raw */ ctx->cancellable, (MMAtSerialResponseFn)curc_ready, ctx); @@ -232,6 +233,7 @@ huawei_custom_init_step (HuaweiCustomInitContext *ctx) ctx->port, "AT^GETPORTMODE", 3, + FALSE, /* raw */ ctx->cancellable, (MMAtSerialResponseFn)getportmode_ready, ctx); |