|
#define RemoteLowspeedWrite |
( |
_conn, |
|
|
_port, |
|
|
_txlen, |
|
|
_rxlen, |
|
|
_data, |
|
|
_result |
|
) |
__remoteLowspeedWrite(_conn, _port, _txlen, _rxlen, _data, _result) |
Send a LowspeedWrite message.
Send the LowspeedWrite direct command on the specified connection slot. Use RemoteConnectionIdle to determine when this write request is completed.
- Parameters:
-
| _conn | The connection slot (0..4). Connections 0 through 3 are for bluetooth connections. Connection 4 refers to the RS485 hi-speed port. See Remote connection constants. |
| _port | The I2C port. See NBC Input port constants. |
| _txlen | The number of bytes you are writing to the I2C device. |
| _rxlen | The number of bytes want to read from the I2C device. |
| _data | A byte array containing the data you are writing to the device. |
| _result | A char value indicating whether the function call succeeded or not. |
|