-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathendpoint.go
73 lines (61 loc) · 2.33 KB
/
endpoint.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
// Copyright (c) 2015-2025 The libusb developers. All rights reserved.
// Project site: https://github.com/gotmc/libusb
// Use of this source code is governed by a MIT-style license that
// can be found in the LICENSE.txt file for the project.
package libusb
// #cgo pkg-config: libusb-1.0
// #include <libusb.h>
import "C"
// Endpoint doesn't seem to model anything. Did I replace this with
// EndpointDescriptor?
type Endpoint struct {
// FIXME(mdr): Is this needed/used? Can this safely be deleted?
}
type endpointAddress byte
type endpointAttributes byte
// EndpointDescriptor models the descriptor for a given endpoint.
type EndpointDescriptor struct {
Length int
DescriptorType descriptorType
EndpointAddress endpointAddress
Attributes endpointAttributes
MaxPacketSize uint16
Interval uint8
Refresh uint8
SynchAddress uint8
}
// EndpointDescriptors contains the available endpoint descriptors.
type EndpointDescriptors []*EndpointDescriptor
// Direction returns the endpointDirection.
func (end *EndpointDescriptor) Direction() EndpointDirection {
// FIXME(mdr): Is this funciton needed? What purpose does it serve? If I'm
// keeping it, I should not return an unexported type.
return end.EndpointAddress.direction()
}
// Number returns the endpoint number in bits 0..3 in the endpoint
// address.
func (end *EndpointDescriptor) Number() byte {
return end.EndpointAddress.endpointNumber()
}
// TransferType returns the transfer type for an endpoint.
func (end *EndpointDescriptor) TransferType() TransferType {
// FIXME(mdr): Is this funciton needed? What purpose does it serve? If I'm
// keeping it, I should not return an unexported type.
return end.Attributes.transferType()
}
func (address endpointAddress) direction() EndpointDirection {
// Bit 7 of the endpointAddress determines the direction
const directionMask = 0x80
const directionBit = 7
return EndpointDirection(address&directionMask) >> directionBit
}
func (address endpointAddress) endpointNumber() byte {
// Bits 0..3 determine the endpoint number
const endpointNumberMask = 0x0F
return byte(address & endpointNumberMask)
}
func (attributes endpointAttributes) transferType() TransferType {
// Bits 0..1 of the bmAttributes determines the transfer type
const transferTypeMask = 0x03
return TransferType(attributes & transferTypeMask)
}