From a4081fd79c546de6e56f21d024672cafd8a6eea6 Mon Sep 17 00:00:00 2001 From: "jacob.eva" Date: Tue, 22 Oct 2024 14:07:23 +0100 Subject: [PATCH] Fix edge case of potential packet duplication --- Radio.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Radio.cpp b/Radio.cpp index f1d7b04..964edae 100644 --- a/Radio.cpp +++ b/Radio.cpp @@ -110,6 +110,7 @@ void ISR_VECT onDio0Rise() { // Therefore, the modem is set into receive mode each time a packet is received. interface_obj[i]->receive(); } + break; } } taskEXIT_CRITICAL_FROM_ISR(int_status);