From: jacob.eva Date: Tue, 22 Oct 2024 13:07:23 +0000 (+0100) Subject: Fix edge case of potential packet duplication X-Git-Url: https://git.tnoah.ca/?a=commitdiff_plain;h=a4081fd79c546de6e56f21d024672cafd8a6eea6;p=lora-radio.git Fix edge case of potential packet duplication --- 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);