0
votes
4answers
205 views
Problem receving in RXTX
I've been using RXTX for about a year now, without too many problems. I just started a new program to interact with a new piece of hardware, so I reused the connect() method I've u …
0
votes
7answers
1k views
NoSuchPortException using RXTX Java library on Windows?
I have followed the instructions to setup rxtx on windows from http://www.jcontrol.org/download/readme_rxtx_en.html.
What I did exactly was copy rxtxSerial.dll to "C:\Program File …
0
votes
0answers
37 views
Is constant polling in RXTX necessary?
While trying to figure out this problem (any help there is appreciated), I ran RXTX while monitoring its activity using PortMon and noticed that RXTX constantly checks if data is a …
3
votes
4answers
3k views
java inputstream read blocking
According to the java api, the InputStream.read() is described as:
If no byte is available because the
end of the stream has been reached,
the value -1 is returned. This me …
0
votes
1answer
414 views
Which thread should I process the RxTx SerialEvent.DATA_AVAILABLE event?
I'm using the RxTx library over usbserial on a Linux distro. The RxTx lib seems to behave quite differently (in a bad way) than how it works over serial.
My application has sev …
0
votes
0answers
192 views
Serial Port Not getting closed. I want to release the COM port …
Serial Port Not getting closed. I want to release the COM port ...
Below is my code....
import java.io.*;
import java.util.*;
import gnu.io.*;
public class ReadCommPort implemen …
1
vote
3answers
461 views
rxtx com port
Hi, I am using rxtx api to read data from a GPS device over a com port. Right now I'm finding the correct com port by reading a config file and looking for the port listed. The pro …
0
votes
2answers
182 views
Why SerialEvent.RI doesn’t work?
Hi, I have two computers running this code:
import java.io.;
import java.util.;
import gnu.io.*;
public class Deb implements SerialPortEventListener, Runnable{
public static fi …
1
vote
5answers
851 views
Dynamically loading a native library inside Java applet
I am trying to write a Java applet that will read from a user's serial port. For this I am using the Java Comm API in conjuction with the RXTX library. I've successfully managed to …
0
votes
0answers
85 views
Problem with ring event in serial port communication
Hi,
I have a modem in a computer where there is running a program that dials a number or waits for a call. When dialing a number the modem works fine, but I doesn't detect the Rin …
0
votes
2answers
488 views
unsatisfied link: SolarisParallel using rxtx to replace java comm api in Windows XP
Hi everyone, i'm trying to use the rxtx 2.0 jars and dll to use the java comm api in windows xp, i copied the RXTXcomm.jar to jre\ext and rxtxSerial.dll and rxtxParallel.dll to jre …
1
vote
2answers
766 views
Writing data over RxTx using usbserial?
I'm using the RxTx library over usbserial on a Linux distro. The RxTx lib seems to behave quite differently (in a bad way) than how it works over serial.
One of my biggest problem …
