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 /src/mm-base-modem-at.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 'src/mm-base-modem-at.c')
-rw-r--r-- | src/mm-base-modem-at.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mm-base-modem-at.c b/src/mm-base-modem-at.c index 657d1df2..00dea480 100644 --- a/src/mm-base-modem-at.c +++ b/src/mm-base-modem-at.c @@ -201,6 +201,7 @@ at_sequence_parse_response (MMAtSerialPort *port, ctx->port, ctx->current->command, ctx->current->timeout, + FALSE, ctx->cancellable, (MMAtSerialResponseFn)at_sequence_parse_response, ctx); @@ -209,6 +210,7 @@ at_sequence_parse_response (MMAtSerialPort *port, ctx->port, ctx->current->command, ctx->current->timeout, + FALSE, ctx->cancellable, (MMAtSerialResponseFn)at_sequence_parse_response, ctx); @@ -288,6 +290,7 @@ mm_base_modem_at_sequence_full (MMBaseModem *self, ctx->port, ctx->current->command, ctx->current->timeout, + FALSE, ctx->cancellable, (MMAtSerialResponseFn)at_sequence_parse_response, ctx); @@ -535,6 +538,7 @@ mm_base_modem_at_command_full (MMBaseModem *self, port, command, timeout, + FALSE, ctx->cancellable, (MMAtSerialResponseFn)at_command_parse_response, ctx); @@ -543,6 +547,7 @@ mm_base_modem_at_command_full (MMBaseModem *self, port, command, timeout, + FALSE, ctx->cancellable, (MMAtSerialResponseFn)at_command_parse_response, ctx); |