Skip to content

Commit

Permalink
Fix split packet issue on some boards with SX1280 configured #13
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobeva committed Dec 6, 2024
1 parent d9e1f98 commit 4dbfc15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Radio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4dbfc15

Please sign in to comment.