Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Sensors/
DICP_101xx.cs25 writeHandlers = new Dictionary<Command, Action<byte[], int>>(); in ICP_101xx()
295 if(writeHandlers.ContainsKey(command) || readHandlers.ContainsKey(command)) in RegisterCommand()
302 writeHandlers.Add(command, writeHandler ?? ((data, offset) => in RegisterCommand()
450 …private Action<byte[], int> HandleWrite => writeHandlers.TryGetValue(command.Value, out var handle…
462 private readonly Dictionary<Command, Action<byte[], int>> writeHandlers; field in Antmicro.Renode.Peripherals.Sensors.ICP_101xx