Writes a byte to a hardware register on a board.
Member of the MccBoard class.
VB .NET
Public Function OutByte(ByVal portNum As Integer, ByVal portVal As Integer) As MccDaq.ErrorInfo
C# .NET
public MccDaq.ErrorInfo OutByte(int portNum, int portVal)
portNum
Register within the board. Boards are set to a particular base address. The registers on the boards are at addresses that are offsets from the base address of the board (BaseAdr + 0, BaseAdr + 2, etc).
Set this parameter to the offset for the desired register. This method takes care of adding the base address to the offset, so that the board's address can be changed without changing the code.
portVal
Value that is written to the register.