From ba38183139e19d5e07a4f30822eb285dde9bd7ca Mon Sep 17 00:00:00 2001 From: Uros Majstorovic Date: Wed, 5 Aug 2020 03:08:22 +0200 Subject: cell urc buffer handling fixed; added sms/ussd/voice/data stubs --- code/esp32/components/eos/cell_voice.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 code/esp32/components/eos/cell_voice.c (limited to 'code/esp32/components/eos/cell_voice.c') diff --git a/code/esp32/components/eos/cell_voice.c b/code/esp32/components/eos/cell_voice.c new file mode 100644 index 0000000..3f6a2a5 --- /dev/null +++ b/code/esp32/components/eos/cell_voice.c @@ -0,0 +1,20 @@ +#include + +#include + +#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(); +} -- cgit v1.2.3