• Recent
    • Tags
    • Popular
    • Register
    • Login
    1. Home
    2. javaer

    Please Note This forum exists for community support for the Mango product family and the Radix IoT Platform. Although Radix IoT employees participate in this forum from time to time, there is no guarantee of a response to anything posted here, nor can Radix IoT, LLC guarantee the accuracy of any information expressed or conveyed. Specific project questions from customers with active support contracts are asked to send requests to support@radixiot.com.

    Radix IoT Website Mango 3 Documentation Website Mango 4 Documentation Website Mango 5 Documentation Website
    J
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 3
    • Groups 0

    javaer

    @javaer

    0
    Reputation
    300
    Profile views
    3
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    javaer Unfollow Follow

    Latest posts made by javaer

    • RE: RTU request over RS-232 to Ethernet converter

      I reply to myself.

      Simply set encapsulated to true when creating the IpParameters.

      
      IpParameters ip = new IpParameters();
      ip.setHost("192.168.15.30");
      ip.setEncapsulated(true);
      ip.setPort(4001);
      
      ModbusFactory factory = new ModbusFactory();
      ModbusMaster master = factory.createTcpMaster(ip, true);
      
      
      posted in Modbus4J general discussion
      J
      javaer
    • RTU request over RS-232 to Ethernet converter

      Hello,
      I have a scenario where a RTU RS-232 modbus device is connected to PC using a RS-232 to Ethernet converter.
      I can only use TCP to comunicate to the device, via the RS-Ethernet converter.
      Which kind of ModbusMaster shall I use ?
      Is there any way to transparently issue RTU requestes over the TCP connection ?

      Thanks is advance.

      posted in Modbus4J general discussion
      J
      javaer
    • RE: RTU request over RS-232 to Ethernet converter

      Hello,
      I have a scenario where a RTU RS-232 modbus device is connected to PC using a RS-232 to Ethernet converter.
      I can only use TCP to comunicate to the device, via the RS-Ethernet converter.
      Which kind of ModbusMaster shall I use ?
      Is there any way to transparently issue RTU requestes over the TCP connection ?

      Thanks is advance.

      posted in Modbus4J general discussion
      J
      javaer