diff options
| author | Uros Majstorovic <majstor@majstor.org> | 2021-02-27 03:17:28 +0100 | 
|---|---|---|
| committer | Uros Majstorovic <majstor@majstor.org> | 2021-02-27 03:17:28 +0100 | 
| commit | 9ce2ce35d5f94c5d0b83ca8d9ceb21c8c1cf3cd4 (patch) | |
| tree | 6436b73665b3f093f498398d43a020b1a71e1137 /fw/esp32/components/eos/cell_pdp.c | |
| parent | fe1d292f241bc7a024a9c20627f6300f3ebc433b (diff) | |
cell/wifi refactoring
Diffstat (limited to 'fw/esp32/components/eos/cell_pdp.c')
| -rw-r--r-- | fw/esp32/components/eos/cell_pdp.c | 31 | 
1 files changed, 31 insertions, 0 deletions
| diff --git a/fw/esp32/components/eos/cell_pdp.c b/fw/esp32/components/eos/cell_pdp.c new file mode 100644 index 0000000..1aa0575 --- /dev/null +++ b/fw/esp32/components/eos/cell_pdp.c @@ -0,0 +1,31 @@ +#include <stdlib.h> +#include <string.h> + +#include <esp_log.h> + +#include "eos.h" +#include "cell.h" + +void eos_cell_pdp_handler(unsigned char mtype, unsigned char *buffer, uint16_t size) { +    char *apn, *user, *pass; + +    buffer += 1; +    size -= 1; +    switch (mtype) { +        case EOS_CELL_MTYPE_PDP_CONFIG: +            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_PDP_CONNECT: +            eos_ppp_connect(); +            break; + +        case EOS_CELL_MTYPE_PDP_DISCONNECT: +            eos_ppp_disconnect(); +            break; +    } +} | 
