embedded-hal-mock
This is a collection of types that implement the embedded-hal traits.
The implementations never access real hardware. Instead, the hardware is mocked or no-op implementations are used.
The goal of the crate is to be able to test drivers in CI without having access to hardware.
Status
- Simple I2C implementation
- No-op Delay implementation
no_std
Currently this crate is not no_std. If you think this is important, let me
know.
Usage
I2C
use Read;
use I2cMock;
let mut i2c = new;
// Reading
let mut buf = ;
i2c.set_read_data;
i2c.read.unwrap;
assert_eq!;
assert_eq!;
// Writing
let buf = ;
i2c.write.unwrap;
assert_eq!;
assert_eq!;
Delay
Just create an instance of embedded_hal_mock::DelayMockNoop. There will be no
actual delay. This is useful for fast tests, where you don't actually need to
wait for the hardware.
License
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT) at your option.
Contributing
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.