aboutsummaryrefslogtreecommitdiff
path: root/embassy-nrf/src
diff options
context:
space:
mode:
authorMichael Kefeder <[email protected]>2025-09-29 21:30:24 +0200
committerMichael Kefeder <[email protected]>2025-09-29 21:30:24 +0200
commit55ee252434834cc9548acdc7b5da8ccd09043ca1 (patch)
tree2dcbc733aa886f068acf9b9c232a0c6d10a35001 /embassy-nrf/src
parent8fae6f5a3f7055dc8250cd8926624010b14db6dc (diff)
fixup: documentation more precise
Diffstat (limited to 'embassy-nrf/src')
-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 {