• Recent
    • Tags
    • Popular
    • Register
    • Login
    1. Home
    2. Bureau de Testes

    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
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 1
    • Best 0
    • Controversial 0
    • Groups 0

    Bureau de Testes

    @Bureau de Testes

    0
    Reputation
    441
    Profile views
    1
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Bureau de Testes Unfollow Follow

    Latest posts made by Bureau de Testes

    • Modbus RTU in Android - error with master.init();

      I am looking to make the communication between a CVW300 using Modbus RTU RS438 protocol with Android and I'm using the modbus4j library, but whenever I try to initialize "master.init ();" error.

                  ModbusFactory factory = new ModbusFactory();
                  SerialParameters params = new SerialParameters();
      
                  params.setBaudRate(19200);
                  params.setDataBits(8);
      
                  params.setCommPortId("/dev/ttyS2");
                  params.setStopBits(1);
                  params.setParity(1);
                  //params.setPortOwnerName();
                  ModbusMaster master = factory.createRtuMaster(params);
                  master.setTimeout(500);
                  master.setRetries(0);
      
                  try {
                      master.init();
                      master.getValue(1, RegisterRange.HOLDING_REGISTER, 0, DataType.FOUR_BYTE_FLOAT);
      
                  } catch (ModbusTransportException e) {
                      addStatus("1: " + e.getMessage().toString());
                      e.printStackTrace();
                  } catch (ErrorResponseException e) {
                      addStatus("2: " + e.getMessage().toString());
                      e.printStackTrace();
                  } catch (ModbusInitException e) {
                      addStatus("3: " + e.getMessage().toString());
                      e.printStackTrace();
                  } finally {
                      master.destroy();
                  }
      
      posted in Modbus4J general discussion
      Bureau de TestesB
      Bureau de Testes