mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-09 17:33:43 +00:00
10 lines
199 B
Go
10 lines
199 B
Go
//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)
|
|
}
|