diff options
author | Uros Majstorovic <majstor@majstor.org> | 2022-10-24 19:59:27 +0200 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2022-10-24 19:59:27 +0200 |
commit | b74b1c08b76e448df27b6fff50cca6fed3e4e7a7 (patch) | |
tree | 763f116e381e1b7442dbee63cafa9a14cdd8a7da /fw/esp32/components/eos/include | |
parent | a5a94dea7043fa6b65693cf0cc11d426d49c637d (diff) |
fixed cell voice and sms driver
Diffstat (limited to 'fw/esp32/components/eos/include')
-rw-r--r-- | fw/esp32/components/eos/include/cell.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/fw/esp32/components/eos/include/cell.h b/fw/esp32/components/eos/include/cell.h index 3ed2646..af2dda8 100644 --- a/fw/esp32/components/eos/include/cell.h +++ b/fw/esp32/components/eos/include/cell.h @@ -29,10 +29,9 @@ #define EOS_CELL_MTYPE_VOICE_BUSY 9 #define EOS_CELL_MTYPE_VOICE_ERR 10 -#define EOS_CELL_MTYPE_SMS_LIST 1 -#define EOS_CELL_MTYPE_SMS_SEND 2 -#define EOS_CELL_MTYPE_SMS_MSG_NEW 3 -#define EOS_CELL_MTYPE_SMS_MSG_ITEM 4 +#define EOS_CELL_MTYPE_SMS_MSG 1 +#define EOS_CELL_MTYPE_SMS_LIST 2 +#define EOS_CELL_MTYPE_SMS_LIST_ITEM 3 #define EOS_CELL_MTYPE_USSD_REQUEST 1 #define EOS_CELL_MTYPE_USSD_REPLY 2 @@ -67,7 +66,7 @@ #define EOS_CELL_UART_MODE_RELAY 3 #define EOS_CELL_MAX_USSD_STR 128 -#define EOS_CELL_MAX_DIAL_STR 128 +#define EOS_CELL_MAX_DIAL_STR 16 #define EOS_CELL_UART_SIZE_BUF 1024 |