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 13, 2020
1 parent 3eb40d3 commit 0f29af7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion at_response.c
Original file line number Diff line number Diff line change
Expand Up @@ -1969,7 +1969,7 @@ int at_response (struct pvt* pvt, const struct iovec iov[2], int iovcnt, at_res_
ast_debug (1, "[%s] Got AT_CGMM data (model info)\n", PVT_ID(pvt));
int ret = at_response_cgmm (pvt, str);

if (0==strncmp(pvt->model, "E173", 4)) {
if (0==strncmp(pvt->model, "E171", 4)) || (0==strncmp(pvt->model, "E173", 4)) {
ast_verb (1, "[%s] Queueing AT+PORTSEL=1 command for '%s'\n", PVT_ID(pvt), pvt->model);
static const at_queue_cmd_t cmds[] = {
ATQ_CMD_DECLARE_ST(CMD_AT_PORTSEL_1, "AT^PORTSEL=1\r"),
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
dnl init
dnl AC_REVISION($Revision: 1.30 $)
AC_PREREQ([2.60])
AC_INIT([chan_dongle],[1.1],[https://github.com/rusxakep/asterisk-chan-dongle/issues],[chan_dongle],[https://github.com/rusxakep/asterisk-chan-dongle/])
PACKAGE_REVISION="20201108"
AC_INIT([chan_dongle],[1.1],[https://github.com/wdoekes/asterisk-chan-dongle/issues],[chan_dongle],[https://github.com/rusxakep/asterisk-chan-dongle/])
PACKAGE_REVISION="20201113"
AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE
AC_CONFIG_HEADERS([config.h])
Expand Down

0 comments on commit 0f29af7

Please sign in to comment.