diff options
author | Uros Majstorovic <majstor@majstor.org> | 2021-08-27 02:34:46 +0200 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2021-08-27 02:34:46 +0200 |
commit | 53b7904443109da0aa06e3225cddc0bcbdf85b93 (patch) | |
tree | 4dd1de9b8e365224344d4dc40a3ce91b69be44c2 /fw/esp32/components/eos/cell_ussd.c | |
parent | f78eeaa085e6da05f4a79ea8c4cb5bd8bc77bbab (diff) |
added spi driver for imx8; added lwip tun driver
Diffstat (limited to 'fw/esp32/components/eos/cell_ussd.c')
-rw-r--r-- | fw/esp32/components/eos/cell_ussd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fw/esp32/components/eos/cell_ussd.c b/fw/esp32/components/eos/cell_ussd.c index a4cf32b..195feaf 100644 --- a/fw/esp32/components/eos/cell_ussd.c +++ b/fw/esp32/components/eos/cell_ussd.c @@ -84,7 +84,7 @@ static void ussd_reply_handler(char *urc, regmatch_t m[]) { _buf += _len + 1; len += _len + 1; } - rv = eos_modem_readln(_buf, EOS_NET_SIZE_BUF - len, 1000); + rv = eos_modem_readln(_buf, EOS_NET_MTU - len, 1000); if (rv) break; } while (1); |