summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/devices/construction/i2c.rs2
-rw-r--r--src/devices/ic.rs2
-rw-r--r--src/lib.rs2
3 files changed, 6 insertions, 0 deletions
diff --git a/src/devices/construction/i2c.rs b/src/devices/construction/i2c.rs
index d4b1a47..9ef18eb 100644
--- a/src/devices/construction/i2c.rs
+++ b/src/devices/construction/i2c.rs
@@ -41,3 +41,5 @@ impl_new_destroy!(Ads1013, new_ads1013, destroy_ads1013);
impl_new_destroy!(Ads1113, new_ads1113, destroy_ads1113);
impl_new_destroy!(Ads1014, new_ads1014, destroy_ads1014);
impl_new_destroy!(Ads1114, new_ads1114, destroy_ads1114);
+impl_new_destroy!(Ads1015, new_ads1015, destroy_ads1015);
+impl_new_destroy!(Ads1115, new_ads1115, destroy_ads1115);
diff --git a/src/devices/ic.rs b/src/devices/ic.rs
index 2292361..5f8e7cb 100644
--- a/src/devices/ic.rs
+++ b/src/devices/ic.rs
@@ -23,6 +23,8 @@ ic_marker!(Ads1013, _12);
ic_marker!(Ads1113, _16);
ic_marker!(Ads1014, _12);
ic_marker!(Ads1114, _16);
+ic_marker!(Ads1015, _12);
+ic_marker!(Ads1115, _16);
pub trait Tier2Features : super::private::Sealed { }
diff --git a/src/lib.rs b/src/lib.rs
index 329542d..3170f20 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -297,6 +297,8 @@ mod private {
impl Sealed for ic::Ads1113 {}
impl Sealed for ic::Ads1014 {}
impl Sealed for ic::Ads1114 {}
+ impl Sealed for ic::Ads1015 {}
+ impl Sealed for ic::Ads1115 {}
}
#[cfg(test)]