aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--embassy-nrf/src/saadc.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-nrf/src/saadc.rs b/embassy-nrf/src/saadc.rs
index d84246572..fd48faabb 100644
--- a/embassy-nrf/src/saadc.rs
+++ b/embassy-nrf/src/saadc.rs
@@ -462,7 +462,7 @@ impl<'d, const N: usize> Drop for Saadc<'d, N> {
462 // This is needed when more than one pin is sampled to avoid needless power consumption. 462 // This is needed when more than one pin is sampled to avoid needless power consumption.
463 // More information can be found in [nrf52 Anomaly 241](https://docs.nordicsemi.com/bundle/errata_nRF52810_Rev1/page/ERR/nRF52810/Rev1/latest/anomaly_810_241.html). 463 // More information can be found in [nrf52 Anomaly 241](https://docs.nordicsemi.com/bundle/errata_nRF52810_Rev1/page/ERR/nRF52810/Rev1/latest/anomaly_810_241.html).
464 // The workaround seems like it copies the configuration before reset and reapplies it after. 464 // The workaround seems like it copies the configuration before reset and reapplies it after.
465 // This method consumes the instance forcing a reconfiguration at compile time, hence we only 465 // The instance is dropped, forcing a reconfiguration at compile time, hence we only
466 // call what is the reset portion of the workaround. 466 // call what is the reset portion of the workaround.
467 #[cfg(feature = "_nrf52")] 467 #[cfg(feature = "_nrf52")]
468 { 468 {