Upgrade to LMIC version 3.2.0

This commit is contained in:
Manuel Bl
2020-07-31 16:32:28 +02:00
parent e29477fa7e
commit 513ac44268
8 changed files with 191 additions and 38 deletions

View File

@ -169,6 +169,17 @@ uint8_t hal_getTxPowerPolicy(
u4_t freq
);
void hal_pollPendingIRQs_helper();
void hal_processPendingIRQs(void);
/// \brief check for any pending interrupts: stub if interrupts are enabled.
static void inline hal_pollPendingIRQs(void)
{
#if !defined(LMIC_USE_INTERRUPTS)
hal_pollPendingIRQs_helper();
#endif /* !defined(LMIC_USE_INTERRUPTS) */
}
#ifdef __cplusplus
} // extern "C"
#endif