Files
TencentOS-tiny/devices
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
..
2019-09-16 13:19:50 +08:00
2019-09-17 17:32:51 +08:00
2019-09-16 13:19:50 +08:00
2020-01-20 10:41:05 +08:00
2019-09-16 13:19:50 +08:00
2020-01-20 15:35:49 +08:00