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 --- examples/linux.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/linux.rs') diff --git a/examples/linux.rs b/examples/linux.rs index c3c9d54..6bf735c 100644 --- a/examples/linux.rs +++ b/examples/linux.rs @@ -1,11 +1,11 @@ use linux_embedded_hal::I2cdev; use nb::block; -use ads1x1x::{channel, Ads1x1x, SlaveAddr}; +use ads1x1x::{channel, Ads1x1x, TargetAddr}; fn main() { let dev = I2cdev::new("/dev/i2c-1").unwrap(); - let mut adc = Ads1x1x::new_ads1013(dev, SlaveAddr::default()); + let mut adc = Ads1x1x::new_ads1013(dev, TargetAddr::default()); let value = block!(adc.read(channel::DifferentialA0A1)).unwrap(); println!("Measurement: {}", value); // get I2C device back -- cgit v1.2.3-54-g00ecf