summaryrefslogtreecommitdiff
path: root/fw/esp32/components/eos/cell_data.c
diff options
context:
space:
mode:
Diffstat (limited to 'fw/esp32/components/eos/cell_data.c')
-rw-r--r--fw/esp32/components/eos/cell_data.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/fw/esp32/components/eos/cell_data.c b/fw/esp32/components/eos/cell_data.c
deleted file mode 100644
index f9a755f..0000000
--- a/fw/esp32/components/eos/cell_data.c
+++ /dev/null
@@ -1,31 +0,0 @@
-#include <stdlib.h>
-#include <string.h>
-
-#include <esp_log.h>
-
-#include "eos.h"
-#include "cell.h"
-
-void eos_cell_data_handler(unsigned char mtype, unsigned char *buffer, uint16_t size) {
- char *apn, *user, *pass;
-
- buffer += 1;
- size -= 1;
- switch (mtype) {
- case EOS_CELL_MTYPE_DATA_CONFIGURE:
- apn = (char *)buffer;
- user = apn + strlen(apn) + 1;
- pass = user + strlen(user) + 1;
- eos_ppp_set_apn(apn);
- eos_ppp_set_auth(user, pass);
- break;
-
- case EOS_CELL_MTYPE_DATA_CONNECT:
- eos_ppp_connect();
- break;
-
- case EOS_CELL_MTYPE_DATA_DISCONNECT:
- eos_ppp_disconnect();
- break;
- }
-}