lsm6ds3tr: initial implementation

This commit is contained in:
Yurii Soldak
2022-05-06 23:05:59 +02:00
committed by Ron Evans
parent 9f6783670f
commit 3bdab45452
5 changed files with 349 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
//go:build !xiao_ble
// +build !xiao_ble
package lsm6ds3tr
// Configure sets up the device for communication.
func (d *Device) Configure(cfg Configuration) error {
return d.doConfigure(cfg)
}