1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

pkg/driver_bme680/contrib: convert to xtimer_msleep()

This commit is contained in:
Benjamin Valentin 2020-11-04 23:00:50 +01:00
parent 14da3717c1
commit de2f576437

View File

@ -45,7 +45,7 @@
void bme680_ms_sleep(uint32_t msleep)
{
xtimer_usleep(msleep * US_PER_MS);
xtimer_msleep(msleep);
}
#ifdef MODULE_PERIPH_I2C