Fix edge case of potential packet duplication

This commit is contained in:
jacob.eva
2024-10-22 14:07:23 +01:00
parent bf38bbf7b1
commit a4081fd79c

View File

@@ -110,6 +110,7 @@ void ISR_VECT onDio0Rise() {
// Therefore, the modem is set into receive mode each time a packet is received. // Therefore, the modem is set into receive mode each time a packet is received.
interface_obj[i]->receive(); interface_obj[i]->receive();
} }
break;
} }
} }
taskEXIT_CRITICAL_FROM_ISR(int_status); taskEXIT_CRITICAL_FROM_ISR(int_status);