SYNOPSIS

int modbus_report_slave_id(modbus_t *ctx, uint8_t *dest);

DESCRIPTION

The modbus_report_slave_id() function shall send a request to the controller to obtain a description of the controller.

The response stored in dest contains:

RETURN VALUE

The modbus_report_slave_id() function shall return the number of read data if successful. Otherwise it shall return -1 and set errno.

EXAMPLE

uint8_t *tab_bytes;

...

rc = modbus_report_slave_id(ctx, tab_bytes);
if (rc > 1) {
    printf("Run Status Indicator: %s\n", tab_bytes[1] ? "ON" : "OFF");
}

AUTHORS

The libmodbus documentation was written by Stéphane Raimbault <stephane.raimbault@gmail.com>