1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-28 07:51:19 +01:00

Merge pull request #11017 from smlng/fix/drivers/hts211

drivers/hts211: fix CTRL_REG2_OS_EN
This commit is contained in:
Alexandre Abadie 2019-02-14 22:57:49 +01:00 committed by GitHub
commit 9fd6a50d10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -125,7 +125,7 @@ enum {
*/
#define HTS221_REGS_CTRL_REG2_BOOT (1 << 7) /**< Reboot memory content */
#define HTS221_REGS_CTRL_REG2_HEATER (1 << 1) /**< Heater ON */
#define HTS221_REGS_CTRL_REG2_OS_EN (1 << 2) /**< One-shot enable, start new dataset */
#define HTS221_REGS_CTRL_REG2_OS_EN (1 << 0) /**< One-shot enable, start new dataset */
/** @} */
/**