summaryrefslogtreecommitdiff
path: root/code/esp32/components/eos/cell_voice.c
diff options
context:
space:
mode:
Diffstat (limited to 'code/esp32/components/eos/cell_voice.c')
-rw-r--r--code/esp32/components/eos/cell_voice.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/code/esp32/components/eos/cell_voice.c b/code/esp32/components/eos/cell_voice.c
deleted file mode 100644
index 3f6a2a5..0000000
--- a/code/esp32/components/eos/cell_voice.c
+++ /dev/null
@@ -1,20 +0,0 @@
-#include <stdlib.h>
-
-#include <esp_log.h>
-
-#include "eos.h"
-#include "cell.h"
-
-void eos_cell_voice_handler(unsigned char mtype, unsigned char *buffer, uint16_t size) {
- int rv;
-
- rv = eos_modem_take(1000);
- if (rv) return;
-
- buffer += 1;
- size -= 1;
- switch (mtype) {
- }
-
- eos_modem_give();
-}