diff options
| author | Diego Barrios Romero <eldruin@gmail.com> | 2018-11-21 09:35:37 +0100 | 
|---|---|---|
| committer | Diego Barrios Romero <eldruin@gmail.com> | 2018-11-21 09:35:37 +0100 | 
| commit | 5485d9655e2ab3a6d04e5f69b246f5db4d2c5936 (patch) | |
| tree | 84bb1e825656d4c523b65edc5d7780fbb060c8cc /tests/common | |
| parent | e4a1ac5a04d021ef026c559354e9913ae59864d8 (diff) | |
| download | ads1x1x-async-5485d9655e2ab3a6d04e5f69b246f5db4d2c5936.tar.gz ads1x1x-async-5485d9655e2ab3a6d04e5f69b246f5db4d2c5936.tar.xz ads1x1x-async-5485d9655e2ab3a6d04e5f69b246f5db4d2c5936.zip | |
Code formatting
Diffstat (limited to 'tests/common')
| -rw-r--r-- | tests/common/mod.rs | 23 | 
1 files changed, 13 insertions, 10 deletions
| diff --git a/tests/common/mod.rs b/tests/common/mod.rs index d81494f..509dbd8 100644 --- a/tests/common/mod.rs +++ b/tests/common/mod.rs @@ -1,10 +1,10 @@  extern crate embedded_hal_mock as hal; -use self::hal::i2c::{ Mock as I2cMock, Transaction as I2cTrans }; +use self::hal::i2c::{Mock as I2cMock, Transaction as I2cTrans};  extern crate ads1x1x; -use self::ads1x1x::{ Ads1x1x, interface, ic, SlaveAddr, mode }; +use self::ads1x1x::{ic, interface, mode, Ads1x1x, SlaveAddr};  #[allow(unused)] -pub const DEVICE_ADDRESS : u8 = 0b100_1000; +pub const DEVICE_ADDRESS: u8 = 0b100_1000;  pub struct Register;  #[allow(unused)] @@ -37,16 +37,20 @@ impl BitFlags {  }  pub struct Config { -    pub bits: u16 +    pub bits: u16,  }  #[allow(dead_code)]  impl Config {      pub fn with_high(&self, mask: u16) -> Self { -        Config { bits: self.bits | mask } +        Config { +            bits: self.bits | mask, +        }      }      pub fn with_low(&self, mask: u16) -> Self { -        Config { bits: self.bits & !mask } +        Config { +            bits: self.bits & !mask, +        }      }      pub fn msb(&self) -> u8 { @@ -75,7 +79,7 @@ macro_rules! impl_new_destroy {          pub fn $destroy<MODE>(dev: Ads1x1x<$iface, ic::$ic, $conv, MODE>) {              dev.$destroy().done();          } -    } +    };  }  impl_new_destroy!(Ads1013, new_ads1013, destroy_ads1013, ic::Resolution12Bit, I2cTrans, interface::I2cInterface<I2cMock>); @@ -90,8 +94,7 @@ macro_rules! assert_would_block {      ($result: expr) => {          match $result {              Err(nb::Error::WouldBlock) => (), -            _ => panic!("Would not block.") +            _ => panic!("Would not block."),          } -    } +    };  } - | 
