rust-i2cdev icon indicating copy to clipboard operation
rust-i2cdev copied to clipboard

Smbus Unimplemented in MockI2CDevice

Open WugWugg opened this issue 5 years ago • 1 comments

I found that the smbus functions were unimplemented when trying to test my code. I require access to these functions because I use the smbus_* in the driver to communicate to the peripheral. I'm suggesting just having the smbus_* methods do a the appropriate mapping to the already implemented MockI2CDevice's read() and write() methods.

Is there a reason the MockI2CDevice's smbus_* methods weren't implemented? Is it as simple as calling MockI2CDevice's read/write methods or am I missing something larger?

WugWugg avatar May 27 '20 23:05 WugWugg

@DarkWugWug Probably just an oversight; feel free to open a PR to fill in that functionality on the mock.

posborne avatar Jun 23 '20 18:06 posborne