Просмотр исходного кода

Add preset_single_register on the server side (slave)

Stéphane Raimbault 17 лет назад
Родитель
Сommit
ed5bed91f6
3 измененных файлов с 33 добавлено и 7 удалено
  1. 20 5
      modbus/modbus.c
  2. 12 2
      tests/unit-test-master.c
  3. 1 0
      tests/unit-test-slave.c

+ 20 - 5
modbus/modbus.c

@@ -322,7 +322,7 @@ static uint16_t crc16(uint8_t *buffer, uint16_t buffer_length)
 /* If CRC is correct returns 0 else returns INVALID_CRC */
 int check_crc16(modbus_param_t *mb_param,
                 uint8_t *msg,
-                int msg_size)
+                const int msg_size)
 {
         int ret;
         
@@ -395,7 +395,8 @@ static uint8_t compute_query_size_header(uint8_t function)
 {
         uint8_t byte;
         
-        if (function <= FC_FORCE_SINGLE_COIL)
+        if (function <= FC_FORCE_SINGLE_COIL ||
+            function == FC_PRESET_SINGLE_REGISTER)
                 /* Read and single write */
                 byte = 4;
         else if (function == FC_FORCE_MULTIPLE_COILS ||
@@ -405,7 +406,7 @@ static uint8_t compute_query_size_header(uint8_t function)
         else
                 byte = 0;
         
-//        printf("compute_query_size_header FC %d, B%d\n", function, byte);
+//        printf("compute_query_size_header FC %d, B %d\n", function, byte);
         
         return byte;
 }
@@ -489,7 +490,8 @@ int receive_msg(modbus_param_t *mb_param,
 
                 /* The message size is undefined (query receiving) so
                  * we need to analyse the message step by step.
-                 * In the first step, we want to reach the function code */
+                 * At the first step, we want to reach the function
+                 * code because all packets have this information. */
                 msg_size_computed = mb_param->header_length + 2;
                 state = FUNCTION;
         } else {
@@ -836,8 +838,21 @@ void manage_query(modbus_param_t *mb_param, uint8_t *query,
                 }
                 break;          
         case FC_PRESET_SINGLE_REGISTER:
-        case FC_READ_EXCEPTION_STATUS:
+                if (address >= mb_mapping->nb_holding_registers) {
+                        printf("Illegal data address %0X in preset_holding_register\n", address); 
+                        response_size = response_exception(mb_param, slave, function,
+                                                           ILLEGAL_DATA_ADDRESS, response);  
+                } else {
+                        int data = (query[offset+4] << 8) + query[offset+5];
+                        
+                        mb_mapping->tab_holding_registers[address] = data;
+                        printf("Query size %d, %d\n", query_size, mb_param->checksum_size);
+                        memcpy(response, query, query_size - mb_param->checksum_size);
+                        response_size = query_size;
+                }
+                break;
         case FC_FORCE_MULTIPLE_COILS:
+        case FC_READ_EXCEPTION_STATUS:
         case FC_PRESET_MULTIPLE_REGISTERS:
         case FC_REPORT_SLAVE_ID:
                 printf("Not implemented\n");

+ 12 - 2
tests/unit-test-master.c

@@ -45,7 +45,7 @@ int main(void)
 
         /* TCP */
         modbus_init_tcp(&mb_param, "127.0.0.1", 1502);
-//        modbus_set_debug(&mb_param, TRUE);
+        modbus_set_debug(&mb_param, TRUE);
       
         modbus_connect(&mb_param);
 
@@ -165,8 +165,18 @@ int main(void)
                 printf("OK\n");
         } else {
                 printf("FAILED\n");
+                goto close;
         }
-        
+
+        ret = preset_single_register(&mb_param, SLAVE, 0x01, 0x03);
+        printf("* preset_single_register: ");
+        if (ret == 1) {
+                printf("OK\n");
+        } else {
+                printf("FAILED\n");
+                goto close;
+        }
+
         /** ILLEGAL DATA ADDRESS */
         printf("\nTest illegal data address:");
 

+ 1 - 0
tests/unit-test-slave.c

@@ -35,6 +35,7 @@ int main(void)
         int i;
 
         modbus_init_tcp(&mb_param, "127.0.0.1", 1502);
+        modbus_set_debug(&mb_param, TRUE);
 
         ret = modbus_mapping_new(&mb_mapping,
                                  UT_COIL_STATUS_ADDRESS + UT_COIL_STATUS_NB_POINTS,