Update ds248x_test.go

pull/13/head
Audrius Paskevicius 5 years ago committed by GitHub
parent 04d137fd94
commit 9a669d83b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -18,7 +18,9 @@ func TestNew(t *testing.T) {
{Addr: 0x18, W: []byte{0xe1, 0xf0}, R: []byte{0x18}}, {Addr: 0x18, W: []byte{0xe1, 0xf0}, R: []byte{0x18}},
{Addr: 0x18, W: []byte{0xd2, 0xe1}, R: []byte{0x1}}, {Addr: 0x18, W: []byte{0xd2, 0xe1}, R: []byte{0x1}},
{Addr: 0x18, W: []byte{0xe1, 0xb4}}, {Addr: 0x18, W: []byte{0xe1, 0xb4}},
{Addr: 0x18, W: []byte{0xc3, 0x6, 0x26, 0x46, 0x66, 0x86}}, // {Addr: 0x18, W: []byte{0xe1, 0xd2}}, // (DS2482-800)
// {Addr: 0x18, W: []byte{0xc3, 0xf0}}, // (DS2482-800)
{Addr: 0x18, W: []byte{0xc3, 0x6, 0x26, 0x46, 0x66, 0x86}}, // (DS2483)
}, },
} }
d, err := New(&bus, 0x18, &DefaultOpts) d, err := New(&bus, 0x18, &DefaultOpts)
@ -36,24 +38,6 @@ func TestNew(t *testing.T) {
} }
} }
func TestNew_opts(t *testing.T) {
bus := i2ctest.Playback{
Ops: []i2ctest.IO{
{Addr: 0x18, W: []byte{0xf0}},
{Addr: 0x18, W: []byte{0xe1, 0xf0}, R: []byte{0x18}},
{Addr: 0x18, W: []byte{0xd2, 0xe1}, R: []byte{0x1}},
{Addr: 0x18, W: []byte{0xe1, 0xb4}},
{Addr: 0x18, W: []byte{0xc3, 0x6, 0x26, 0x46, 0x66, 0x86}},
},
}
if _, err := New(&bus, 0x18, &DefaultOpts); err != nil {
t.Fatal(err)
}
if err := bus.Close(); err != nil {
t.Fatal(err)
}
}
func init() { func init() {
sleep = func(time.Duration) {} sleep = func(time.Duration) {}
} }

Loading…
Cancel
Save