Set data in the CSR memory space in a thread safe manner

Namespace:  VideoRay.Communication
Assembly:  vrLib (in vrLib.dll) Version: 2.0.0.0 (2.0.0.0)

Syntax

C#
public void CSR_SetData(
	uint addr,
	byte[] data,
	int offset,
	int len
)
Visual Basic (Declaration)
Public Sub CSR_SetData ( _
	addr As UInteger, _
	data As Byte(), _
	offset As Integer, _
	len As Integer _
)
Visual C++
public:
void CSR_SetData(
	unsigned int addr, 
	array<unsigned char>^ data, 
	int offset, 
	int len
)

Parameters

addr
Type: System..::.UInt32
Address of data to set
data
Type: array< System..::.Byte >[]()[]
Data bytes
offset
Type: System..::.Int32
Offset into data to get data from
len
Type: System..::.Int32
length of data to set

See Also