mirror of
https://github.com/liberatedsystems/RNode_Firmware_CE.git
synced 2025-05-03 07:04:54 -04:00
Fix split packet issue on some boards with SX1280 configured #13
This commit is contained in:
parent
d9e1f98d86
commit
4dbfc15aa0
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@ void ISR_VECT onDio0Rise() {
|
|||
if (interface_obj[i]->getPacketValidity()) {
|
||||
interface_obj[i]->handleDio0Rise();
|
||||
}
|
||||
if (interfaces[i] == SX128X) {
|
||||
if ((interfaces[i] == SX128X) || (interfaces[i] == SX1280)) {
|
||||
// On the SX1280, there is a bug which can cause the busy line
|
||||
// to remain high if a high amount of packets are received when
|
||||
// in continuous RX mode. This is documented as Errata 16.1 in
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue