Skip to content

Commit

Permalink
- E173 modem receives SMS only during initialization fix (wdoekes#121)…
Browse files Browse the repository at this point in the history
… + E171 too.

- issues address fix
  • Loading branch information
rusxakep committed Nov 14, 2020
1 parent 9166f3a commit 6d45438
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions at_command.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#include "smsdb.h"
#include "error.h"

static const char cmd_at[] = "AT\r";
static const char cmd_at[] = "AT\r";
static const char cmd_chld1x[] = "AT+CHLD=1%d\r";
static const char cmd_chld2[] = "AT+CHLD=2\r";
static const char cmd_clcc[] = "AT+CLCC\r";
Expand Down Expand Up @@ -611,7 +611,7 @@ EXPORT_DEF int at_enqueue_activate(struct cpvt *cpvt)

if (cpvt->state != CALL_STATE_ONHOLD && cpvt->state != CALL_STATE_WAITING)
{
ast_log (LOG_ERROR, "[%s] Imposible activate call idx %d from state '%s'\n",
ast_log (LOG_ERROR, "[%s] Impossible activate call idx %d from state '%s'\n",
PVT_ID(cpvt->pvt), cpvt->call_idx, call_state2str(cpvt->state));
return -1;
}
Expand Down

0 comments on commit 6d45438

Please sign in to comment.