Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Memory/
DGenericI2cEeprom.cs81 …{1:X4}: {2}", bytesToWrite, currentAddress, data.Skip(index).Take(bytesToWrite).ToLazyHexString()); in Write()
90 … to address 0x{1:X4}: {2}", count, currentAddress, data.Skip(index).Take(count).ToLazyHexString()); in Write()
137 …g("Read {0} bytes from address 0x{1:X4}: {2}", dataCount, startingAddress, data.ToLazyHexString()); in Read()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Sensors/ICM20948/
DICM20948.cs51 this.NoisyLog("Write {0}", data.ToLazyHexString()); in Write()
76 …ed, startingRegister, selectedRegister, SelectedRegisterName, data.Skip(offset).ToLazyHexString()); in Write()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/I2C/
DSAM4S_TWI.cs345 this.NoisyLog("Reading from slave 0x{0:X}: {1}", slaveAddress, data.ToLazyHexString()); in ReadBuffer()
385 this.NoisyLog("Writing to slave 0x{0:X}: {1}", slaveAddress, data.ToLazyHexString()); in FinalizeWrite()
421 … this.NoisyLog("Writing to slave 0x{0:X}: {1}", slaveAddress, addressBytes.ToLazyHexString()); in SendInternalAddress()
DRenesasRA_IIC.cs391 this.DebugLog("Read {0} from peripheral", data.ToLazyHexString()); in ReadData()
484 this.DebugLog("Writing {0} to peripheral", content.ToLazyHexString()); in HandleStopCondition()
DRenesasRZG_IIC.cs392 this.DebugLog("Read {0} from peripheral", data.ToLazyHexString()); in ReadData()
481 this.DebugLog("Writing {0} to peripheral", content.ToLazyHexString()); in HandleStopCondition()
DRenesasDA_I2C.cs902 …gLevel.Debug, "Reading from a slave at 0x{0:X}, data: {1}", TargetAddress, data.ToLazyHexString()); in PerformReception()
933 …, "Writing to an unregistered slave at 0x{0:X}, data: {1}", TargetAddress, data.ToLazyHexString()); in PerformTransmission()
937 …LogLevel.Debug, "Writing to a slave at 0x{0:X}, data: {1}", TargetAddress, data.ToLazyHexString()); in PerformTransmission()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DMisc.cs1301 public static LazyHexString<T> ToLazyHexString<T>(this IEnumerable<T> collection) in ToLazyHexString() method in Antmicro.Renode.Utilities.Misc