Bonus side effect: the integer isn't present anymore when TIOCSRS485 isn't supported on non Win32 platforms.
@@ -77,6 +77,8 @@ typedef struct _modbus_rtu {
#else
/* Save old termios settings */
struct termios old_tios;
+#endif
+#if HAVE_DECL_TIOCSRS485
int serial_mode;
#endif
} modbus_rtu_t;
@@ -698,10 +698,13 @@ static int _modbus_rtu_connect(modbus_t *ctx)
if (tcsetattr(ctx->s, TCSANOW, &tios) < 0) {
return -1;
}
/* The RS232 mode has been set by default */
ctx_rtu->serial_mode = MODBUS_RTU_RS232;
+
return 0;