Method WriteUInt32Async
WriteUInt32Async(int, uint, CancellationToken)
Asynchronously writes a value to a 32-bit unsigned integer register with the specified address.
public Task WriteUInt32Async(int address, uint value, CancellationToken cancellationToken = default)
Parameters
addressintThe address of the register to write.
valueuintThe value to be stored in the register.
cancellationTokenCancellationTokenA CancellationToken which can be used to cancel the operation.
Returns
- Task
The task object representing the asynchronous write operation.
WriteUInt32Async(int, uint[], CancellationToken)
Asynchronously writes an array of values to a 32-bit unsigned integer register with the specified address.
public Task WriteUInt32Async(int address, uint[] values, CancellationToken cancellationToken = default)
Parameters
addressintThe address of the register to write.
valuesuint[]The values to be stored in the register.
cancellationTokenCancellationTokenA CancellationToken which can be used to cancel the operation.
Returns
- Task
The task object representing the asynchronous write operation.