summaryrefslogtreecommitdiffstats
path: root/src/devices/ic.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/ic.rs')
-rw-r--r--src/devices/ic.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/devices/ic.rs b/src/devices/ic.rs
index 95eb8bd..e6e9d16 100644
--- a/src/devices/ic.rs
+++ b/src/devices/ic.rs
@@ -22,3 +22,13 @@ macro_rules! ic_marker {
ic_marker!(Ads1013, _12);
ic_marker!(Ads1113, _16);
ic_marker!(Ads1014, _12);
+
+pub trait Tier2Features : super::private::Sealed { }
+
+macro_rules! tier2_features {
+ ($name:ident) => {
+ impl Tier2Features for $name {}
+ }
+}
+
+tier2_features!(Ads1014);