Skip to content

Commit

Permalink
Address code review
Browse files Browse the repository at this point in the history
  • Loading branch information
jonnew committed Nov 8, 2024
1 parent 8469a78 commit 99120e6
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions OpenEphys.Onix1/ConfigurePortController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -125,12 +125,12 @@ public enum PortStatusCode : ushort
SerdesLock = 0x0001,

/// <summary>
/// Gets the SERDES on-chip parity check status.
/// Specifies the SERDES on-chip parity check status.
/// </summary>
SerdesParityPass = 0x0002,

/// <summary>
/// Specifies a cyclic redundancy check failure.
/// Specifies a cyclic redundancy check failure during data transmission.
/// </summary>
CrcError = 0x0100,

Expand All @@ -148,6 +148,11 @@ public enum PortStatusCode : ushort
/// Specifies the receipt of a badly formatted data packet.
/// </summary>
BadPacketFormat = 0x0800,

/// <summary>
/// Specifies the a cyclic redundancy check failure during hub initialization.
/// </summary>
InitializationCrcError = 0x1000,
}

/// <summary>
Expand Down

0 comments on commit 99120e6

Please sign in to comment.