summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorMarkus Reiter <me@reitermark.us>2024-06-10 21:56:37 +0000
committerGitHub <noreply@github.com>2024-06-10 23:56:37 +0200
commit00830f4e5569a381afbdfce270e478c5fd25401f (patch)
tree8940dd071a18d8b1ab93ca25cea89b5ea52f269d /src/lib.rs
parent0ff4c7b448fd388015d4903b774c63991356b954 (diff)
downloadads1x1x-async-00830f4e5569a381afbdfce270e478c5fd25401f.tar.gz
ads1x1x-async-00830f4e5569a381afbdfce270e478c5fd25401f.tar.xz
ads1x1x-async-00830f4e5569a381afbdfce270e478c5fd25401f.zip
Remove `DynamicOneShot` trait. (#19)
* Remove `DynamicOneShot` trait. * Update changelog.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 277b2ad..cd63c4b 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -213,7 +213,7 @@ impl BitFlags {
}
pub mod channel;
-pub use channel::{ChannelId, ChannelSelection};
+pub use channel::ChannelId;
mod construction;
mod conversion;
pub use crate::conversion::{ConvertMeasurement, ConvertThreshold};
@@ -224,8 +224,7 @@ mod types;
use crate::types::Config;
pub use crate::types::{
mode, Ads1x1x, ComparatorLatching, ComparatorMode, ComparatorPolarity, ComparatorQueue,
- DataRate12Bit, DataRate16Bit, DynamicOneShot, Error, FullScaleRange, ModeChangeError,
- SlaveAddr,
+ DataRate12Bit, DataRate16Bit, Error, FullScaleRange, ModeChangeError, SlaveAddr,
};
mod private {