Home
last modified time | relevance | path

Searched refs:customSetupPacketHandler (Results 1 – 3 of 3) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/USB/
DUSBDeviceCore.cs32 …Action<SetupPacket, byte[], Action<byte[]>> customSetupPacketHandler = null) : base(18, (byte)Desc… in USBDeviceCore() argument
42 this.customSetupPacketHandler = customSetupPacketHandler; in USBDeviceCore()
106 if(customSetupPacketHandler != null) in HandleSetupPacket()
108 customSetupPacketHandler(packet, additionalData, receivedBytes => in HandleSetupPacket()
277 private Action<SetupPacket, byte[], Action<byte[]>> customSetupPacketHandler; field in Antmicro.Renode.Core.USB.USBDeviceCore
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/USB/
DValentyUSB.cs26 USBCore = new USBDeviceCore(this, customSetupPacketHandler: SetupPacketHandler); in ValentyUSB()
DNRF_USBD.cs29 USBCore = new USBDeviceCore(this, customSetupPacketHandler: HandleSetupPacket); in NRF_USBD()