Update humidity sampling register comment

This commit is contained in:
tyeth 2025-04-30 13:18:44 +01:00
parent c93725cc17
commit 5b119e24f6
1 changed files with 2 additions and 2 deletions

View File

@ -354,14 +354,14 @@ protected:
/// unused - don't set /// unused - don't set
unsigned int none : 5; unsigned int none : 5;
// pressure oversampling // humidity oversampling
// 000 = skipped // 000 = skipped
// 001 = x1 // 001 = x1
// 010 = x2 // 010 = x2
// 011 = x4 // 011 = x4
// 100 = x8 // 100 = x8
// 101 and above = x16 // 101 and above = x16
unsigned int osrs_h : 3; ///< pressure oversampling unsigned int osrs_h : 3; ///< humidity oversampling
/// @return combined ctrl hum register /// @return combined ctrl hum register
unsigned int get() { return (osrs_h); } unsigned int get() { return (osrs_h); }