Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/GPIOPort/
DNXPGPIOPort.cs69 if(number >= inputDisabled.Length) in OnGPIO()
71 …nal GPIO {0:X}, which is out of range (should be lower than {1:X})", number, inputDisabled.Length); in OnGPIO()
74 if(inputDisabled[number].Value) in OnGPIO()
105 isInput ? (!inputDisabled[i].Value).ToString() : notApplicable, in PrintCurrentConfiguration()
276 .WithFlags(0, NumberOfConnections, out inputDisabled, name: "PIDR") in DefineGPIORegisters()
332 mask = ~mask & ~BitHelper.GetValueFromBitsArray(inputDisabled.Select(x => x.Value)); in FilterForDirection()
340 private IFlagRegisterField[] inputDisabled; field in Antmicro.Renode.Peripherals.GPIOPort.NXPGPIOPort