summaryrefslogtreecommitdiff
path: root/fw/esp32/components/eos/include/cell.h
diff options
context:
space:
mode:
authorUros Majstorovic <majstor@majstor.org>2024-09-04 21:07:29 +0200
committerUros Majstorovic <majstor@majstor.org>2024-09-04 21:07:29 +0200
commit9da5f8409c85637361d7bc69b721f6d9d3087b7b (patch)
treef53bd2d8f9f59b683519ce87551db6ee23be2062 /fw/esp32/components/eos/include/cell.h
parentec892bf2e7620fb58e635b900ab4a0e44e3488bd (diff)
esp32 cellular modem driver fix
Diffstat (limited to 'fw/esp32/components/eos/include/cell.h')
-rw-r--r--fw/esp32/components/eos/include/cell.h19
1 files changed, 12 insertions, 7 deletions
diff --git a/fw/esp32/components/eos/include/cell.h b/fw/esp32/components/eos/include/cell.h
index af2dda8..cb9f49c 100644
--- a/fw/esp32/components/eos/include/cell.h
+++ b/fw/esp32/components/eos/include/cell.h
@@ -55,19 +55,24 @@
#define EOS_CELL_SMS_ADDRTYPE_ALPHA 2
#define EOS_CELL_SMS_ADDRTYPE_OTHER 3
-#define EOS_CELL_PDP_SIZE_APN 64
-#define EOS_CELL_PDP_SIZE_USR 64
-#define EOS_CELL_PDP_SIZE_PWD 64
-#define EOS_CELL_PDP_SIZE_ARG 64
+#define EOS_CELL_SIZE_PHNUM 16
+
+#define EOS_CELL_SMS_SIZE_ADDR 20
+#define EOS_CELL_SMS_SIZE_TS 25
+#define EOS_CELL_SMS_SIZE_TXT 160
+
+#define EOS_CELL_USSD_SIZE_REQ 128
+
+#define EOS_CELL_PDP_SIZE_APN 63
+#define EOS_CELL_PDP_SIZE_USR 63
+#define EOS_CELL_PDP_SIZE_PWD 63
+#define EOS_CELL_PDP_SIZE_ARG 63
#define EOS_CELL_UART_MODE_NONE 0
#define EOS_CELL_UART_MODE_ATCMD 1
#define EOS_CELL_UART_MODE_PPP 2
#define EOS_CELL_UART_MODE_RELAY 3
-#define EOS_CELL_MAX_USSD_STR 128
-#define EOS_CELL_MAX_DIAL_STR 16
-
#define EOS_CELL_UART_SIZE_BUF 1024
void eos_cell_init(void);