希望在这里找到解决方案。

我有一个控制器,该控制器通过UART使用特定于应用程序的协议,并且该协议仅以14400 bps的速度工作。

我必须使用Java代码通过串行端口与此控制器进行通信。

但是我发现我正在使用的API虽然支持标准波特率,但不支持14400波特率!

我尝试使用javax.comm和rxtx jar。没有真正的帮助,因为它们都不支持此波特率。

任何人都可以在这方面帮助我,这将非常有帮助。

谢谢!

好的,这是代码片段

        selectedPort = (SerialPort) portID.open("FlashProgramming",
                TIMEOUT);
        System.out.println("port " + selectedPort + " is opened");



    try {

        selectedPort.setSerialPortParams(14400,
                SerialPort.DATABITS_8, SerialPort.STOPBITS_1,
                SerialPort.PARITY_NONE);


//此处尝试将波特率设置为14400,但它回滚到9600,不支持默认值14400 !!

    }


    // no handshaking or other flow control
    try {
        selectedPort.setFlowControlMode(SerialPort.FLOWCONTROL_NONE);
    } catch (UnsupportedCommOperationException e1) {
        // TODO Auto-generated catch block
        e1.printStackTrace();
    }

    // timer on any read of the serial port
    try {
        selectedPort.enableReceiveTimeout(TIMEOUT);
    } catch (UnsupportedCommOperationException e1) {
        // TODO Auto-generated catch block
        e1.printStackTrace();
    }

    System.out.println("Comport Configeration is done");

    try {

        Serialdriver.in = selectedPort.getInputStream();
        Serialdriver.out = selectedPort.getOutputStream();

        System.out.println("i/p & o/p's are initialized");

        Serialdriver.handlerParamselScreen.displaystatus("Seleted Com port "
                + selectedPort + " is Successfully opened");
    }



        selectedPort.addEventListener(Serialdriver);



    selectedPort.notifyOnDataAvailable(true);


    return selectedPort;

}

最佳答案

好,这是解决方案,

我将低级dll从javax.comm替换为rxtx。

这是链接-rxtx latest driveres

最好的部分是它同时支持x32和x64 jre!将代码从javax.comm移植到rxtx只需5分钟。

希望对您有所帮助。

干杯!

09-12 18:22