diff options
Diffstat (limited to 'code/esp32/components/eos/cell_data.c')
-rw-r--r-- | code/esp32/components/eos/cell_data.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/code/esp32/components/eos/cell_data.c b/code/esp32/components/eos/cell_data.c new file mode 100644 index 0000000..6732346 --- /dev/null +++ b/code/esp32/components/eos/cell_data.c @@ -0,0 +1,20 @@ +#include <stdlib.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) { + int rv; + + rv = eos_modem_take(1000); + if (rv) return; + + buffer += 1; + size -= 1; + switch (mtype) { + } + + eos_modem_give(); +} |