mirror of https://github.com/eldruin/ds323x-rs
78 lines
2.2 KiB
Rust
78 lines
2.2 KiB
Rust
extern crate embedded_hal;
|
|
extern crate ds323x;
|
|
use self::ds323x::{ Ds323x, interface, ic };
|
|
use hal::i2c::{ Mock as I2cMock, Transaction as I2cTrans };
|
|
use hal::spi::{ Mock as SpiMock, Transaction as SpiTrans };
|
|
|
|
pub const DEVICE_ADDRESS: u8 = 0b110_1000;
|
|
|
|
pub struct Register;
|
|
|
|
impl Register {
|
|
pub const SECONDS : u8 = 0x00;
|
|
pub const MINUTES : u8 = 0x01;
|
|
pub const HOURS : u8 = 0x02;
|
|
pub const DOW : u8 = 0x03;
|
|
pub const DOM : u8 = 0x04;
|
|
pub const MONTH : u8 = 0x05;
|
|
}
|
|
|
|
pub struct DummyOutputPin;
|
|
|
|
impl embedded_hal::digital::OutputPin for DummyOutputPin {
|
|
fn set_low(&mut self) {}
|
|
fn set_high(&mut self) {}
|
|
}
|
|
|
|
|
|
pub fn new_ds3231(transactions: &[I2cTrans]) -> Ds323x<interface::I2cInterface<I2cMock>, ic::DS3231> {
|
|
Ds323x::new_ds3231(I2cMock::new(&transactions))
|
|
}
|
|
|
|
pub fn new_ds3232(transactions: &[I2cTrans]) -> Ds323x<interface::I2cInterface<I2cMock>, ic::DS3232> {
|
|
Ds323x::new_ds3232(I2cMock::new(&transactions))
|
|
}
|
|
|
|
pub fn new_ds3234(transactions: &[SpiTrans])
|
|
-> Ds323x<interface::SpiInterface<SpiMock, DummyOutputPin>, ic::DS3234> {
|
|
Ds323x::new_ds3234(SpiMock::new(&transactions), DummyOutputPin)
|
|
}
|
|
|
|
#[macro_export]
|
|
macro_rules! get_test {
|
|
($name:ident, $method:ident, $create_method:ident, $expected:expr, $transactions:expr) => {
|
|
#[test]
|
|
fn $name() {
|
|
let trans = $transactions;
|
|
let mut dev = $create_method(&trans);
|
|
assert_eq!($expected, dev.$method().unwrap());
|
|
}
|
|
};
|
|
}
|
|
|
|
#[macro_export]
|
|
macro_rules! set_test {
|
|
($name:ident, $method:ident, $create_method:ident, $value:expr, $transactions:expr) => {
|
|
#[test]
|
|
fn $name() {
|
|
let trans = $transactions;
|
|
let mut dev = $create_method(&trans);
|
|
dev.$method($value).unwrap();
|
|
}
|
|
};
|
|
}
|
|
|
|
#[macro_export]
|
|
macro_rules! set_invalid_test {
|
|
($name:ident, $method:ident, $create_method:ident, $value:expr) => {
|
|
#[test]
|
|
fn $name() {
|
|
let mut dev = $create_method(&[]);
|
|
match dev.$method($value) {
|
|
Err(Error::InvalidInputData) => (),
|
|
_ => panic!("InvalidInputData error not returned.")
|
|
}
|
|
}
|
|
};
|
|
}
|