diff options
author | Uros Majstorovic <majstor@majstor.org> | 2020-08-12 01:49:15 +0200 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2020-08-12 01:49:15 +0200 |
commit | 57c1824affca858023c65c84e188ea7dc6c0a5f2 (patch) | |
tree | a3d701c98b76de279324a0d2318bbcb1259045d4 /fw/esp32/components/eos/include | |
parent | 0ca91a2b6a1b112a6e67306e7dbedaeec0225c5b (diff) |
ussd service implemented urc
Diffstat (limited to 'fw/esp32/components/eos/include')
-rw-r--r-- | fw/esp32/components/eos/include/cell.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fw/esp32/components/eos/include/cell.h b/fw/esp32/components/eos/include/cell.h index 65b4b1a..89f3372 100644 --- a/fw/esp32/components/eos/include/cell.h +++ b/fw/esp32/components/eos/include/cell.h @@ -34,6 +34,7 @@ #define EOS_CELL_MTYPE_USSD_REQUEST 1 #define EOS_CELL_MTYPE_USSD_REPLY 2 +#define EOS_CELL_MTYPE_USSD_CANCEL 3 #define EOS_CELL_MTYPE_DATA_CONFIGURE 1 #define EOS_CELL_MTYPE_DATA_CONNECT 2 @@ -49,7 +50,7 @@ #define EOS_CELL_UART_MODE_RELAY 3 #define EOS_CELL_UART_MODE_UNDEF 0xff -#define EOS_CELL_UART_SIZE_BUF 128 +#define EOS_CELL_UART_SIZE_BUF 1024 void eos_cell_init(void); |