Files
tinygo/src/machine/usb/config.go
T
2025-06-11 07:46:02 +02:00

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
}