diff options
| author | Markus Reiter <me@reitermark.us> | 2024-01-30 12:15:18 +0100 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-30 12:15:18 +0100 | 
| commit | 698c817a34c4b3835cc19453ec9310c12e1a5784 (patch) | |
| tree | 3816538b287ef651134abf027ade025addea1901 /src | |
| parent | ae2b28f057b464e72736308624d1154e210f3b89 (diff) | |
| download | ads1x1x-async-698c817a34c4b3835cc19453ec9310c12e1a5784.tar.gz ads1x1x-async-698c817a34c4b3835cc19453ec9310c12e1a5784.tar.xz ads1x1x-async-698c817a34c4b3835cc19453ec9310c12e1a5784.zip | |
Remove `reset_internal_driver_state`. (#22)
* Remove `reset_internal_driver_state`.
* Update changelog.
Diffstat (limited to 'src')
| -rw-r--r-- | src/devices/common.rs | 15 | 
1 files changed, 0 insertions, 15 deletions
| diff --git a/src/devices/common.rs b/src/devices/common.rs index 5fed33f..53cb050 100644 --- a/src/devices/common.rs +++ b/src/devices/common.rs @@ -37,19 +37,4 @@ where          };          Ok(!config.is_high(BitFlags::OS))      } - -    /// Reset the internal state of this driver to the default values. -    /// -    /// *Note:* This does not alter the state or configuration of the device. -    /// -    /// This resets the cached configuration register value in this driver to -    /// the power-up (reset) configuration of the device. -    /// -    /// This needs to be called after performing a reset on the device, for -    /// example through an I2C general-call Reset command, which was not done -    /// through this driver to ensure that the configurations in the device -    /// and in the driver match. -    pub fn reset_internal_driver_state(&mut self) { -        self.config = Config::default(); -    }  } | 
