Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/CAN/
DSocketCAN.cs142 data = msg.Data.CopyAndResize(MaxDataLength) in FromCANMessageFrame()
175 [PacketField, Offset(quadWords: 1), Width(MaxDataLength)]
179 public const int MaxDataLength = 8; field
180 public const int Size = MaxDataLength + 8;
203 data = msg.Data.CopyAndResize(MaxDataLength) in FromCANMessageFrame()
248 [PacketField, Offset(quadWords: 1), Width(MaxDataLength)]
252 public const int MaxDataLength = 64; field
253 public const int Size = MaxDataLength + 8;
305 [PacketField, Offset(doubleWords: 3), Width(MaxDataLength)]
309 public const int MaxDataLength = 2048; field
[all …]
DCANMessageFrame.cs36 if(Data.Length > ClassicalSocketCANFrame.MaxDataLength) in ToSocketCAN()
43 if(Data.Length > FlexibleSocketCANFrame.MaxDataLength) in ToSocketCAN()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CAN/
DMPFS_CAN.cs415 if(value > MaxDataLength)
417 …rning, "Tried to set data length code to {0}, but it was truncated to {1}.", value, MaxDataLength);
418 dataLengthCode = MaxDataLength;
428 protected const int MaxDataLength = 8; field in Antmicro.Renode.Peripherals.CAN.MPFS_CAN.MessageBuffer
437 data = new byte[MaxDataLength]; in TxMessageBuffer()
458 Array.Clear(data, 0, MaxDataLength); in SetData()
DUT32_CAN.cs211 …StandardFrameFormatRegisters.Data.DefineManyConditional(this, MaxDataLength, () => !resetMode.Valu… in DefineRegisters()
218 …ExtendedFrameFormatRegisters.Data.DefineManyConditional(this, MaxDataLength, () => !resetMode.Valu… in DefineRegisters()
433 private IValueRegisterField[] data = new IValueRegisterField[MaxDataLength];
452 private const int MaxDataLength = 8; field in Antmicro.Renode.Peripherals.CAN.UT32_CAN