lsm9ds1: minimal implementation

This commit is contained in:
Yurii Soldak
2021-11-04 01:53:11 +01:00
committed by Ron Evans
parent 51c3aa271b
commit f6761a9079
5 changed files with 466 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
//go:build !nano_33_ble
// +build !nano_33_ble
package lsm9ds1
// Configure sets up the device for communication.
func (d *Device) Configure(cfg Configuration) error {
return d.doConfigure(cfg)
}