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
..
bc26 first commit for opensource 2019-09-16 13:19:50 +08:00
bc35_28_95 add tos_slist.h, rename tos.h to tos_k.h 2020-01-03 17:25:38 +08:00
bc35_28_95_lwm2m add tos_slist.h, rename tos.h to tos_k.h 2020-01-03 17:25:38 +08:00
esp8266 delete some project files 2019-09-17 17:32:51 +08:00
esp8266_tencent_firmware first commit for opensource 2019-09-16 13:19:50 +08:00
m5310a add tos_slist.h, rename tos.h to tos_k.h 2020-01-03 17:25:38 +08:00
m6312 first commit for opensource 2019-09-16 13:19:50 +08:00
rhf76_lora fix a bug of memset overflow 2020-01-20 10:41:05 +08:00
sim800a first commit for opensource 2019-09-16 13:19:50 +08:00
sim7600ce [bug] fixed in sim7600ce.c 2020-01-20 15:35:49 +08:00