drivers/atwinc15x0: convert to xtimer_msleep()

This commit is contained in:
Benjamin Valentin 2020-11-04 23:00:49 +01:00
parent 5b3829845d
commit fd102efea8

View File

@ -78,7 +78,7 @@ void nm_bsp_reset(void)
void nm_bsp_sleep(uint32 u32TimeMsec)
{
xtimer_usleep(u32TimeMsec * US_PER_MS);
xtimer_msleep(u32TimeMsec);
}
void nm_bsp_register_isr(tpfNmBspIsr pfIsr)