mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-04 11:07:46 +00:00
17 lines
298 B
Go
17 lines
298 B
Go
package usb
|
|
|
|
type EndpointConfig struct {
|
|
Index uint8
|
|
IsIn bool
|
|
TxHandler func()
|
|
RxHandler func([]byte)
|
|
DelayRxHandler func([]byte) bool
|
|
StallHandler func(Setup) bool
|
|
Type uint8
|
|
}
|
|
|
|
type SetupConfig struct {
|
|
Index uint8
|
|
Handler func(Setup) bool
|
|
}
|