From d3af2b6074e8698b8b83f79758e23070a8b80002 Mon Sep 17 00:00:00 2001 From: Em Shotton Date: Thu, 22 Aug 2024 11:46:00 -0700 Subject: Update the terms "master/slave" to "controller/target" (#29) * Update the terms "master/slave" to "controller/target" throughout to align with the i2c bus specification v.7 * Updated Changelog * Change word casing --------- Co-authored-by: Em Shotton Co-authored-by: Diego Barrios Romero --- tests/common/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/common') diff --git a/tests/common/mod.rs b/tests/common/mod.rs index ffeb916..3e10894 100644 --- a/tests/common/mod.rs +++ b/tests/common/mod.rs @@ -1,4 +1,4 @@ -use ads1x1x::{ic, mode, Ads1x1x, SlaveAddr}; +use ads1x1x::{ic, mode, Ads1x1x, TargetAddr}; use embedded_hal_mock::eh1::i2c::{Mock as I2cMock, Transaction as I2cTrans}; #[allow(unused)] @@ -70,7 +70,7 @@ macro_rules! impl_new_destroy { ($ic:ident, $create:ident, $destroy:ident, $conv:ty, $trans:ty, $iface:ty) => { #[allow(unused)] pub fn $create(transactions: &[$trans]) -> Ads1x1x<$iface, ic::$ic, $conv, mode::OneShot> { - Ads1x1x::$create(I2cMock::new(transactions), SlaveAddr::default()) + Ads1x1x::$create(I2cMock::new(transactions), TargetAddr::default()) } #[allow(unused)] -- cgit v1.2.3-54-g00ecf