Struct bme280_multibus::Status [−][src]
pub struct Status(_);Expand description
Status register
Implementations
Get the reset value of the ctrl_meas register.
Example
use bme280_multibus::Status;
assert_eq!(Status::reset(), Status::default());Measuring field.
Automatically set to true whenever a conversion is running and back to
false when the results have been transferred to the data registers.
Example
assert!(!bme280_multibus::Status::reset().measuring());im_update field.
Automatically set to true when the NVM data are being copied to image
registers and back to false when the copying is done.
The data is copied at power-on-reset and before every conversion.
Example
assert!(!bme280_multibus::Status::reset().im_update());