TencentOS-tiny/devices/sim7600ce
LinPeng f29745bac9
[bug] fixed in sim7600ce.c
1. if (rssi == 99 || ber != 99) {
        return -1;
    }
this is a bug, as datasheet show, value 99 means 'not known or not detectable', so it should been fixed as below:
    if (rssi == 99 || ber == 99) {
        return -1;
    }
2020-01-20 15:35:49 +08:00
..
sim7600ce.c [bug] fixed in sim7600ce.c 2020-01-20 15:35:49 +08:00
sim7600ce.h add LTE dtu sim7600ce 4G module tcp test 2019-11-13 16:17:21 +08:00