forked from TencentOS/TencentOS-tiny
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;
}
|
||
|---|---|---|
| .. | ||
| bc26 | ||
| bc35_28_95 | ||
| bc35_28_95_lwm2m | ||
| esp8266 | ||
| esp8266_tencent_firmware | ||
| m5310a | ||
| m6312 | ||
| rhf76_lora | ||
| sim800a | ||
| sim7600ce | ||