瀏覽代碼

Define and public export of MODBUS_MAX_PDU_LENGTH (closes #167)

Stéphane Raimbault 11 年之前
父節點
當前提交
d39fc1f8c4
共有 2 個文件被更改,包括 14 次插入5 次删除
  1. 2 5
      doc/modbus_report_slave_id.txt
  2. 12 0
      src/modbus.h

+ 2 - 5
doc/modbus_report_slave_id.txt

@@ -44,17 +44,14 @@ EXAMPLE
 -------
 [source,c]
 -------------------
-uint8_t nb = 128;
-uint8_t *tab_bytes;
+uint8_t tab_bytes[MODBUS_MAX_PDU_LENGTH];
 
 ...
 
-tab_bytes = (uint8_t *) malloc(nb * sizeof(uint8_t));
-rc = modbus_report_slave_id(ctx, nb, tab_bytes);
+rc = modbus_report_slave_id(ctx, MODBUS_MAX_PDU_LENGTH, tab_bytes);
 if (rc > 1) {
     printf("Run Status Indicator: %s\n", tab_bytes[1] ? "ON" : "OFF");
 }
-free(tab_bytes);
 -------------------
 
 

+ 12 - 0
src/modbus.h

@@ -105,6 +105,18 @@ MODBUS_BEGIN_DECLS
 #define MODBUS_MAX_WR_WRITE_REGISTERS      121
 #define MODBUS_MAX_WR_READ_REGISTERS       125
 
+/* The size of the MODBUS PDU is limited by the size constraint inherited from
+ * the first MODBUS implementation on Serial Line network (max. RS485 ADU = 256
+ * bytes). Therefore, MODBUS PDU for serial line communication = 256 - Server
+ * address (1 byte) - CRC (2 bytes) = 253 bytes.
+ *
+ * Consequently:
+ * - RS232 / RS485 ADU = 253 bytes + Server address (1 byte) + CRC (2 bytes) =
+ *   256 bytes.
+ * - TCP MODBUS ADU = 253 bytes + MBAP (7 bytes) = 260 bytes.
+ */
+#define MODBUS_MAX_PDU_LENGTH              253
+
 /* Random number to avoid errno conflicts */
 #define MODBUS_ENOBASE 112345678