blob: 7732d3d3c3a4a2cb038288cd3dcd1c999e07246c [file] [log] [blame]
#include "mocked_i2c_interface.hpp"
#include <memory>
namespace i2c
{
std::unique_ptr<I2CInterface> create(
uint8_t /*busId*/, uint8_t /*devAddr*/,
I2CInterface::InitialState /*initialState*/, int /*maxRetries*/)
{
return std::make_unique<MockedI2CInterface>();
}
} // namespace i2c