Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

modbus_new_rtu(3) [debian man page]

MODBUS_NEW_RTU(3)						 Libmodbus Manual						 MODBUS_NEW_RTU(3)

NAME
modbus_new_rtu - create a libmodbus context for RTU SYNOPSIS
modbus_t *modbus_new_rtu(const char *device, int baud, char parity, int data_bit, int stop_bit); DESCRIPTION
The modbus_new_rtu() function shall allocate and initialize a modbus_t structure to communicate in RTU mode on a serial line. The device argument specifies the name of the serial port handled by the OS, eg. /dev/ttyS0 or /dev/ttyUSB0. On Windows, it's necessary to prepend COM name with \. for COM number greater than 9, eg. \\.\COM10. See http://msdn.microsoft.com/en-us/library/aa365247(v=vs.85).aspx for details The baud argument specifies the baud rate of the communication, eg. 9600, 19200, 57600, 115200, etc. The parity argument can have one of the following values o N for none o E for even o O for odd The data_bits argument specifies the number of bits of data, the allowed values are 5, 6, 7 and 8. The stop_bits argument specifies the bits of stop, the allowed values are 1 and 2. RETURN VALUE
The modbus_new_rtu() function shall return a pointer to a modbus_t structure if successful. Otherwise it shall return NULL and set errno to one of the values defined below. ERRORS
EINVAL An invalid argument was given. EXAMPLE
modbus_t *ctx; ctx = modbus_new_rtu("/dev/ttyUSB0", 115200, 'N', 8, 1); if (ctx == NULL) { fprintf(stderr, "Unable to create the libmodbus context "); return -1; } SEE ALSO
modbus_new_tcp(3) modbus_free(3) AUTHORS
The libmodbus documentation was written by Stephane Raimbault <stephane.raimbault@gmail.com[1]> NOTES
1. stephane.raimbault@gmail.com mailto:stephane.raimbault@gmail.com libmodbus 3.0.3 05/26/2012 MODBUS_NEW_RTU(3)

Check Out this Related Man Page

MODBUS_REPLY_EXCEPTI(3) 					 Libmodbus Manual					   MODBUS_REPLY_EXCEPTI(3)

NAME
modbus_reply_exception - send an exception reponse SYNOPSIS
*int modbus_reply_exception(modbus_t *ctx, const uint8_t *req, unsigned int exception_code); DESCRIPTION
The modbus_reply_exception() function shall send an exception response based on the exception_code in argument. The libmodbus provides the following exception codes: o MODBUS_EXCEPTION_ILLEGAL_FUNCTION (1) o MODBUS_EXCEPTION_ILLEGAL_DATA_ADDRESS (2) o MODBUS_EXCEPTION_ILLEGAL_DATA_VALUE (3) o MODBUS_EXCEPTION_SLAVE_OR_SERVER_FAILURE (4) o MODBUS_EXCEPTION_ACKNOWLEDGE (5) o MODBUS_EXCEPTION_SLAVE_OR_SERVER_BUSY (6) o MODBUS_EXCEPTION_NEGATIVE_ACKNOWLEDGE (7) o MODBUS_EXCEPTION_MEMORY_PARITY (8) o MODBUS_EXCEPTION_NOT_DEFINED (9) o MODBUS_EXCEPTION_GATEWAY_PATH (10) o MODBUS_EXCEPTION_GATEWAY_TARGET (11) The initial request req is required to build a valid response. RETURN VALUE
The modbus_reply_exception() function shall return the length of the response sent if successful. Otherwise it shall return -1 and set errno. ERRORS
EINVAL The exception code is invalid SEE ALSO
modbus_reply(3) libmodbus(7) AUTHORS
The libmodbus documentation was written by Stephane Raimbault <stephane.raimbault@gmail.com[1]> NOTES
1. stephane.raimbault@gmail.com mailto:stephane.raimbault@gmail.com libmodbus 3.0.3 05/26/2012 MODBUS_REPLY_EXCEPTI(3)
Man Page