Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CAN/
DSTMCAN.cs1239 public uint LastErrorCode; field in Antmicro.Renode.Peripherals.CAN.STMCAN.DeviceRegisters.ErrorStatusRegister
1248 LastErrorCode = (value >> LECSHIFT) & LECMASK; in SetResetValue()
1255 LastErrorCode = (value >> LECSHIFT) & LECMASK; in SetValue()
1266 ((LastErrorCode & LECMASK) << LECSHIFT) | in GetValue()
1274 LastErrorCode = LECBitDominantError; in SetLECBitDominantError()
1279 return (LastErrorCode > LECNoError) && (LastErrorCode < LECSetBySoftware); in LECErrorPending()
DMCAN.cs218 … .WithEnumField(0, 3, out rv.ProtocolStatusRegister.LastErrorCode, readCallback: (_, __) => in BuildRegisterMap()
220 … rv.ProtocolStatusRegister.LastErrorCode.Value = LastErrorCode.NoChange; // Reset on read in BuildRegisterMap()
749 rv.ProtocolStatusRegister.LastErrorCode.Value = LastErrorCode.NoError; in HandleTransmitSuccess()
DMCAN_Structures.cs244 private enum LastErrorCode enum in Antmicro.Renode.Peripherals.CAN.MCAN
939 public IEnumRegisterField<LastErrorCode> LastErrorCode; field