19 lines
557 B
Go
19 lines
557 B
Go
|
|
//go:build !linux
|
||
|
|
|
||
|
|
package tools
|
||
|
|
|
||
|
|
// scan is a stub for non-Linux platforms.
|
||
|
|
func (t *I2CTool) scan(args map[string]interface{}) *ToolResult {
|
||
|
|
return ErrorResult("I2C is only supported on Linux")
|
||
|
|
}
|
||
|
|
|
||
|
|
// readDevice is a stub for non-Linux platforms.
|
||
|
|
func (t *I2CTool) readDevice(args map[string]interface{}) *ToolResult {
|
||
|
|
return ErrorResult("I2C is only supported on Linux")
|
||
|
|
}
|
||
|
|
|
||
|
|
// writeDevice is a stub for non-Linux platforms.
|
||
|
|
func (t *I2CTool) writeDevice(args map[string]interface{}) *ToolResult {
|
||
|
|
return ErrorResult("I2C is only supported on Linux")
|
||
|
|
}
|