-
Notifications
You must be signed in to change notification settings - Fork 2
/
driver.go
133 lines (107 loc) · 2.54 KB
/
driver.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/*
* driver.go
*
* Copyright (c) 2021-2022 Stavros Avramidis (@purpl3F0x). All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*
*/
package ant
import (
"errors"
"github.com/google/gousb"
"log"
)
type UsbDevice struct {
vid, pid gousb.ID
context *gousb.Context
device *gousb.Device
closeIface func()
intf *gousb.Interface
in *gousb.InEndpoint
out *gousb.OutEndpoint
}
func (dev *UsbDevice) Open() (e error) {
log.Println("Opening USB device")
dev.context = gousb.NewContext()
dev.device, e = dev.context.OpenDeviceWithVIDPID(dev.vid, dev.pid)
if e != nil {
return
}
if dev.device == nil {
e = errors.New("USB Device not found")
return
}
if dev.device.SetAutoDetach(true) != nil {
return
}
// Claim default interface
dev.intf, dev.closeIface, e = dev.device.DefaultInterface()
if e != nil {
return
}
// Open an OUT endpoint.
dev.out, e = dev.intf.OutEndpoint(1)
if e != nil {
return
}
// Open an IN endpoint.
dev.in, e = dev.intf.InEndpoint(1)
if e != nil {
return
}
log.Println("USB Device opened")
return
}
func (dev *UsbDevice) Close() {
log.Println("Closing USB device")
if dev.closeIface != nil {
dev.closeIface()
}
if dev.device != nil {
_ = dev.device.Close()
}
if dev.context != nil {
_ = dev.context.Close()
}
log.Println("USB Device closed")
}
func (dev *UsbDevice) Read(b []byte) (int, error) {
return dev.in.Read(b)
}
func (dev *UsbDevice) Write(b []byte) (int, error) {
return dev.out.Write(b)
}
func (dev *UsbDevice) BufferSize() int {
return dev.out.Desc.MaxPacketSize
}
func GetUsbDevice(vid, pid gousb.ID) *UsbDevice {
return &UsbDevice{
vid: vid,
pid: pid,
}
}
func AntUsb1() *UsbDevice {
return GetUsbDevice(0x0FCF, 0x1004)
}
func AntDevBoardUSB() *UsbDevice {
return GetUsbDevice(0x0FCF, 0x1006)
}
func AntUsb2() *UsbDevice {
return GetUsbDevice(0x0FCF, 0x1008)
}
func AntUsbM() *UsbDevice {
return GetUsbDevice(0x0FCF, 0x1009)
}