1
0
mirror of https://github.com/kidoman/embd synced 2024-06-08 03:57:48 +02:00

ran gofmt

This commit is contained in:
Gavin Cabbage 2015-08-29 00:57:25 -04:00 committed by Max Matveev
parent aceae212a1
commit df38fbffce

View File

@ -131,7 +131,7 @@ type mockI2CBus struct {
closed bool
}
func (bus *mockI2CBus) ReadBytes(addr byte, num int) ([]byte, error) { return []byte{0x00}, nil }
func (bus *mockI2CBus) ReadBytes(addr byte, num int) ([]byte, error) { return []byte{0x00}, nil }
func (bus *mockI2CBus) ReadByte(addr byte) (byte, error) { return 0x00, nil }
func (bus *mockI2CBus) WriteBytes(addr byte, value []byte) error { return nil }
func (bus *mockI2CBus) ReadFromReg(addr, reg byte, value []byte) error { return nil }