1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

drivers/sht3x: fix typos

This commit is contained in:
Kaspar Schleiser 2019-10-23 21:20:31 +02:00
parent 1d2dd2efdd
commit 5ebe48ce42
2 changed files with 3 additions and 3 deletions

View File

@ -127,7 +127,7 @@ typedef struct {
int sht3x_init (sht3x_dev_t *dev, const sht3x_params_t *params);
/**
* @brief Read SHT3x measurment results (temperature and humidity)
* @brief Read SHT3x measurement results (temperature and humidity)
*
* The function returns the results of one measurement once they are available.
*

View File

@ -231,7 +231,7 @@ static int _get_raw_data(sht3x_dev_t* dev, uint8_t* raw_data)
return -SHT3X_ERROR_I2C;
}
/* in single shot mode upate dmeasurement started flag of the driver */
/* in single shot mode update dmeasurement started flag of the driver */
if (dev->mode == SHT3X_SINGLE_SHOT) {
dev->meas_started = false;
}
@ -342,7 +342,7 @@ static int _reset (sht3x_dev_t* dev)
DEBUG_DEV("", dev);
/*
* Sensor can only be soft resetted in idle mode. Therefore, we
* Sensor can only be soft reset in idle mode. Therefore, we
* send a break and wait 1 ms. After that the sensor should be
* in idle mode. We don't check I2C errors at this moment.
*/