mirror of
https://github.com/kidoman/embd
synced 2024-12-22 21:00:05 +01:00
make the process of registered available hosts less clunky
This commit is contained in:
parent
2504678ba9
commit
ef87ad7879
31
describe.go
31
describe.go
@ -1,31 +0,0 @@
|
|||||||
package embd
|
|
||||||
|
|
||||||
import (
|
|
||||||
"errors"
|
|
||||||
|
|
||||||
"github.com/kidoman/embd/gpio"
|
|
||||||
"github.com/kidoman/embd/host/bbb"
|
|
||||||
"github.com/kidoman/embd/host/rpi"
|
|
||||||
"github.com/kidoman/embd/i2c"
|
|
||||||
)
|
|
||||||
|
|
||||||
type descriptor interface {
|
|
||||||
GPIO() gpio.GPIO
|
|
||||||
I2C() i2c.I2C
|
|
||||||
}
|
|
||||||
|
|
||||||
func describeHost() (descriptor, error) {
|
|
||||||
host, rev, err := DetectHost()
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
switch host {
|
|
||||||
case HostRPi:
|
|
||||||
return rpi.Descriptor(rev), nil
|
|
||||||
case HostBBB:
|
|
||||||
return bbb.Descriptor(rev), nil
|
|
||||||
default:
|
|
||||||
return nil, errors.New("host: invalid host")
|
|
||||||
}
|
|
||||||
}
|
|
5
hal.go
5
hal.go
@ -2,6 +2,7 @@ package embd
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/kidoman/embd/gpio"
|
"github.com/kidoman/embd/gpio"
|
||||||
|
"github.com/kidoman/embd/host"
|
||||||
"github.com/kidoman/embd/i2c"
|
"github.com/kidoman/embd/i2c"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -16,7 +17,7 @@ const (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func NewGPIO() (gpio.GPIO, error) {
|
func NewGPIO() (gpio.GPIO, error) {
|
||||||
desc, err := describeHost()
|
desc, err := host.Describe()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
@ -25,7 +26,7 @@ func NewGPIO() (gpio.GPIO, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func NewI2C() (i2c.I2C, error) {
|
func NewI2C() (i2c.I2C, error) {
|
||||||
desc, err := describeHost()
|
desc, err := host.Describe()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
@ -4,20 +4,18 @@ import (
|
|||||||
lgpio "github.com/kidoman/embd/driver/linux/gpio"
|
lgpio "github.com/kidoman/embd/driver/linux/gpio"
|
||||||
li2c "github.com/kidoman/embd/driver/linux/i2c"
|
li2c "github.com/kidoman/embd/driver/linux/i2c"
|
||||||
"github.com/kidoman/embd/gpio"
|
"github.com/kidoman/embd/gpio"
|
||||||
"github.com/kidoman/embd/i2c"
|
"github.com/kidoman/embd/host"
|
||||||
)
|
)
|
||||||
|
|
||||||
type descriptor struct {
|
func init() {
|
||||||
|
host.Describers[host.BBB] = describer
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *descriptor) GPIO() gpio.GPIO {
|
func describer(rev int) *host.Descriptor {
|
||||||
|
return &host.Descriptor{
|
||||||
|
GPIO: func() gpio.GPIO {
|
||||||
return lgpio.New(pins)
|
return lgpio.New(pins)
|
||||||
}
|
},
|
||||||
|
I2C: li2c.New,
|
||||||
func (d *descriptor) I2C() i2c.I2C {
|
}
|
||||||
return li2c.New()
|
|
||||||
}
|
|
||||||
|
|
||||||
func Descriptor(rev int) *descriptor {
|
|
||||||
return &descriptor{}
|
|
||||||
}
|
}
|
||||||
|
31
host/descriptor.go
Normal file
31
host/descriptor.go
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
package host
|
||||||
|
|
||||||
|
import (
|
||||||
|
"errors"
|
||||||
|
|
||||||
|
"github.com/kidoman/embd/gpio"
|
||||||
|
"github.com/kidoman/embd/i2c"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Descriptor struct {
|
||||||
|
GPIO func() gpio.GPIO
|
||||||
|
I2C func() i2c.I2C
|
||||||
|
}
|
||||||
|
|
||||||
|
type Describer func(rev int) *Descriptor
|
||||||
|
|
||||||
|
var Describers = map[Host]Describer{}
|
||||||
|
|
||||||
|
func Describe() (*Descriptor, error) {
|
||||||
|
host, rev, err := Detect()
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
describer, ok := Describers[host]
|
||||||
|
if !ok {
|
||||||
|
return nil, errors.New("host: invalid host")
|
||||||
|
}
|
||||||
|
|
||||||
|
return describer(rev), nil
|
||||||
|
}
|
@ -1,4 +1,4 @@
|
|||||||
package embd
|
package host
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
@ -10,11 +10,11 @@ import (
|
|||||||
type Host int
|
type Host int
|
||||||
|
|
||||||
const (
|
const (
|
||||||
HostNull Host = iota
|
Null Host = iota
|
||||||
HostRPi
|
RPi
|
||||||
HostBBB
|
BBB
|
||||||
HostCubieTruck
|
CubieTruck
|
||||||
HostGalileo
|
Galileo
|
||||||
)
|
)
|
||||||
|
|
||||||
func execOutput(name string, arg ...string) (output string, err error) {
|
func execOutput(name string, arg ...string) (output string, err error) {
|
||||||
@ -51,7 +51,7 @@ func kernelVersion() (major, minor, patch int, err error) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
func DetectHost() (host Host, rev int, err error) {
|
func Detect() (host Host, rev int, err error) {
|
||||||
major, minor, patch, err := kernelVersion()
|
major, minor, patch, err := kernelVersion()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return
|
return
|
||||||
@ -69,9 +69,9 @@ func DetectHost() (host Host, rev int, err error) {
|
|||||||
|
|
||||||
switch node {
|
switch node {
|
||||||
case "raspberrypi":
|
case "raspberrypi":
|
||||||
host = HostRPi
|
host = RPi
|
||||||
case "beaglebone":
|
case "beaglebone":
|
||||||
host = HostBBB
|
host = BBB
|
||||||
default:
|
default:
|
||||||
err = fmt.Errorf("embd: your host %q is not supported at this moment. please request support at https://github.com/kidoman/embd/issues", node)
|
err = fmt.Errorf("embd: your host %q is not supported at this moment. please request support at https://github.com/kidoman/embd/issues", node)
|
||||||
}
|
}
|
@ -7,23 +7,20 @@ import (
|
|||||||
"github.com/kidoman/embd/i2c"
|
"github.com/kidoman/embd/i2c"
|
||||||
)
|
)
|
||||||
|
|
||||||
type descriptor struct {
|
func init() {
|
||||||
rev int
|
host.Describers[host.RPi] = describer
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *descriptor) GPIO() gpio.GPIO {
|
func describer(rev int) *host.Descriptor {
|
||||||
var pins = rev1Pins
|
var pins = rev1Pins
|
||||||
if d.rev > 1 {
|
if d.rev > 1 {
|
||||||
pins = rev2Pins
|
pins = rev2Pins
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return &host.Descriptor{
|
||||||
|
GPIO: func() gpio.GPIO {
|
||||||
return lgpio.New(pins)
|
return lgpio.New(pins)
|
||||||
}
|
},
|
||||||
|
I2C: li2c.New,
|
||||||
func (d *descriptor) I2C() i2c.I2C {
|
}
|
||||||
return li2c.New()
|
|
||||||
}
|
|
||||||
|
|
||||||
func Descriptor(rev int) *descriptor {
|
|
||||||
return &descriptor{rev}
|
|
||||||
}
|
}
|
||||||
|
@ -4,10 +4,11 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/kidoman/embd"
|
"github.com/kidoman/embd"
|
||||||
|
"github.com/kidoman/embd/host"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
h, _, err := embd.DetectHost()
|
h, _, err := host.Detect()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@ -15,9 +16,9 @@ func main() {
|
|||||||
var pinNo interface{}
|
var pinNo interface{}
|
||||||
|
|
||||||
switch h {
|
switch h {
|
||||||
case embd.HostBBB:
|
case host.BBB:
|
||||||
pinNo = "P9_31"
|
pinNo = "P9_31"
|
||||||
case embd.HostRPi:
|
case host.RPi:
|
||||||
pinNo = 10
|
pinNo = 10
|
||||||
default:
|
default:
|
||||||
panic("host not supported (yet :P)")
|
panic("host not supported (yet :P)")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user