RXTX is a Java library, using a native implementation (via JNI), providing serial and parallel communication for the Java Development Toolkit (JDK).
1
vote
1answer
21 views
RXTX in a runnable jar file - why won't it work?
I have a project in eclipse that uses rxtx. I have the same project in netbeans, too. They work perfectly, but neither of them works, when I create runnable jars.
I do not know what I do wrong. I ...
0
votes
0answers
22 views
[JAVA][RXTX] Input and output stream with button
First of all, sorry for my english, it's not my mother tongue.
I'm trying to make a Java interface with the RxTx library to communicate with a serial port. I made my interface using Jigloo (shame on ...
0
votes
0answers
10 views
How do you take an analog video feed from USB and read it in Xuggler?
I have a normal analog to USB connection. The analog input feeds/streams will be a single audio stream and video stream (mono hence one audio stream). I would like to take these feeds into Xuggler and ...
0
votes
0answers
18 views
Reading from serial port stops keyboard and mouse responding
I have written Java code to read sensor data sent from an Arduino to a Mac using USB. I'm using the RXTX library version 2.1.7.
Code is:
CommPortIdentifier portId = getPortId();
...
0
votes
0answers
15 views
Netty4.0 + RXTX can't reallly call Executor on Linux
While using the combination of netty 4.0 + RXTX 2.2 on Ubuntu 12.04, the following code will produce a interesting output. If you comment out ctx.write(" ") indicated in the last piece of code, the ...
0
votes
0answers
86 views
Connect to serial port in Java using RXTX
I'm using Eclipse to communicate with Arduino, through the Arduino platform. I can open a port using Eclipse or Arduino, but I can't connect to an opened port using Eclipse. I would like to send ...
1
vote
1answer
24 views
Netbeans platform command line parsing. Want to lock command prompt until task completed
I hope this makes sense:
I have a netbeans platform application that can also be ran from command line using the OptionProcessor class. Currently I execute the application and it instantly seems to ...
0
votes
0answers
32 views
Java program has no communication with port unless opened from command line; only happens on one machine
I'm working with this Java program that uses RXTX. It functions as expected on all but one of our machines. I factory reset a HP ProBook 6570b running 64 bit Windows 7 and installed the JRE; the ...
0
votes
0answers
54 views
RXTX cant open Serial port
I'm currently practicing examples of the RXTX project to get some experience how to use it. For this purpose I'm trying out an example: ...
0
votes
0answers
57 views
Rxtx does not work in netbeans
I have a problem with rxtx and netbeans. I used the exact code of the TwoWaySerialComm class from rxtx wiki, but it does not work (it works very well with eclipse).
I do not know what the problem is, ...
0
votes
0answers
36 views
Port is not Listed
I want to do serial communication with the USB GSM Modem in linux. I have used the following code. but portList.hashElements is returning as false. I have used RXTX librarry 2.1.7 version. please help ...
0
votes
1answer
39 views
Synchronizing methods in RXTX
Situation:
I'm trying to make the incoming data from SerialPort usefull for my purposes. In one class Processor.java I've implemented several methods - one of them (serialEvent) implements ...
0
votes
0answers
70 views
Creating a runnable jar using NRJavaSerial for 64 bit serial communication
I have used NRJavaSerial(a fork to RxTx, http://code.google.com/p/nrjavaserial/) to succesfully create (with eclipse) a runnable jar application(for windows) that works on 32-bit systems. When I make ...
0
votes
0answers
58 views
size of response buffer is less while working with rxtx
i am working with serial programming in java using the rxtx api when
i write byte array to the output stream of serial port the machine
gives a response which has less element as compaire to ...
0
votes
1answer
71 views
Strange behaviour with serial connection sending byte[]
I'm using the following code to try and send a byte array to my arduino but I'm getting strange results. Can anyone see what the issue is? I'm trying to make it so that the Arduino will print out the ...
1
vote
2answers
82 views
Reentrant lock - illegalmonitorstateexception when trying to write a byte[] to a serial port using rxtx
I have the following code which is giving me a lot of trouble, I think I've been staring at it too long and fresh eyes would be appreciated -
Calling method - (in RobotInterface class)
try
...
0
votes
0answers
60 views
Ubuntu Java Failing to identify COM ports
private static void initProgram() {
System.out.println("fdsf");
//Must start by setting up the COM port to identify where the arduino is.
portList = ...
1
vote
1answer
438 views
How to solve error java.io.IOException: Input/output error in nativeavailable for Serial Communication?
I have Arm processor which is AllWinner A13 ,RAM- 512mb, and OS- Linaro 13.01 Ubuntu (means debian). Now i m making Serial Communication program for /dev/ttyS0. i made simple program for Two Way ...
1
vote
1answer
119 views
RXTX can't list port on ubuntu
I'm trying to run simple code:
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.OutputStream;
import gnu.io.CommPortIdentifier;
import gnu.io.SerialPort;
import ...
0
votes
0answers
30 views
RXTXcomm systematic freeze when debugging
When debugging my program which reads from a serial port using the RXTXcomm library.
My OSX (10.8.2) system just freezes up and there is nothing I can do unless I reboot the system.
Has anybody ever ...
0
votes
0answers
258 views
java program (using rxtx library) reads the same value from the serial port
My arduino is sending 2 integers seperated by "," to the searial port via bluetooth continuously. Ubuntu receies these values in rfcomm0 and sudo screen /dev/rfcomm0 shows these received values. ...
0
votes
1answer
271 views
Java rxtx code to connect to rfcomm0 is not working
I have successfully connected my arduino uno R3 with bluetooth mate module and am able to send data to my laptop running Ubuntu 12.04 via bluetooth. (using serial port protocol). The data is received ...
0
votes
0answers
47 views
serial port get closed after 6th write operation how to persist it
I want to write a byte array on serial port outputStream but after 6th
succesful write the port get closed. What are the possible reasons for this?
Following are the two methods to open the port and ...
1
vote
1answer
81 views
how to resolve IO Exception while writing on port
I want to write a byte array to a Serialport OutputStream but I get an error 'java.IO.Exception'.
The following is array I try to write:
byte[] b = new byte[255] {127, -112, 17, 126, -100, 76, 98, ...
2
votes
1answer
120 views
Java SerialPortEvent issue: DATA_AVAILABLE calls faster then incoming data
I'm posting for the first time so I hope that I write everything according to the format.
Currently I'm working on a project using Serial Communication with RXTX between a java application and a ...
1
vote
1answer
210 views
XBee - xbee-api and multiple endpoints
Using Andrew Rapp's xbee-api, how can I sample IO data via a coordinator from more than two endpoints?
I have 17 Series 1 XBees. I have programmed one to be a coordinator (API mode = 2) and the rest ...
0
votes
0answers
70 views
How to receive Serial Data and display it periodically with java.util.timer
I am receiving data from an arduino mega which transmits data with a delay of 500 ms. I wish to update this data on a COSM server on a periodic basis by updating a feed while receiving the data using ...
1
vote
2answers
196 views
Can Java Web Start install a Windows driver, and also copy dll and jar into the Java dirs?
My Java FX2 application configures a serial device and as part of deployment, it has to install a Windows device driver and also copy native libs (RxTx serial port libs) over into the Java dirs.
Can ...
0
votes
0answers
33 views
RXTXcomm lib blocks all other serial com libs
I have discovered that after using RXTXcomm lib for serial interface I now have trouble using other libs that interface a serial port.
I have an other project (in Eclipse) where i use the OW_API from ...
1
vote
1answer
319 views
How can i use applet send data to serial port via rxtxComm.jar On ubuntu
I write a program use applet to access serial port via rxtxComm.jar,i change the java.policy,so the applet can access serial port without signed.When the program running on
Windows,it's effective.But ...
2
votes
2answers
464 views
How to add rxtxSerial in java.library.path?
I came across couple of similar questions while trying to find an answer but they did not help as I don't have much knowledge of linux.
I am developing an application in Java using Eclipse IDE. My os ...
0
votes
1answer
201 views
Java: Using RxTx Libararies
I am new to Java , and trying to write a serial communication application.
I am using Windows 7 (32 bit)
D:\Glaswegian\Java\RXTX\Test>java -version
java version "1.7.0_13"
Java(TM) SE Runtime ...
1
vote
0answers
84 views
How to control universal keyboard application on Windows by java?
i'm trying to develop an application for a universal keyboard which is for camera controlling. I'm able to communicate with device in some basic way on Linux over /dev/ttyACM0 pseudo terminal device. ...
0
votes
1answer
57 views
RXTXComm. Not correct Eclipse behaviour during read from stream []byte
I' creating application that reads/writes to/from com port using RXTXComm library. When I'm trying to read one byte from stream everything goes fine.
while ( ( data = in.read() ) > -1 )
Then I ...
0
votes
0answers
108 views
Determine only the USB serial ports in Java with the RXTX API
I am using the RXTX API for reading from and writing to a serial port produced from a USB to serial port convertor. The problem is that some computers have a lot of serial ports and it is difficult to ...
1
vote
1answer
48 views
Java RXTX and packaging
I have a java program that built in netbeans that uses the RXTX from Here. So far it works very well in both windows and linux.
My question: Is it possible to include the needed RXTX files in the JAR ...
2
votes
3answers
597 views
Need help using Arduino R3 as serial-to-usb converter (to program something)
I have researched (and learnt quite a bit), but I have little experience in programming and only really understand basic sketches so far. I would like to use the Arduino R3 (more specifically, the usb ...
0
votes
0answers
111 views
Use Arduino R3 as serial-to-usb converter to program (6 channel) radio
I have researched (and learnt quite a bit), but I have no experience in programming and only understand a bit. I would like to use the Arduino R3 (more specifically, the FT232RL chip) to connect the ...
0
votes
2answers
64 views
RXTX with Netty-4.0.0-Beta1-SNAPSHOT
I'm having a hard time figuring out how to properly use the RXTX transport (from Git as of today).
I'm able to write inbound handlers which consumes content read from the serial port, decode it, and ...
0
votes
1answer
76 views
RXTX receive error
I'm using RXTX-2.1-7 and am trying to read a COM port in Windows. I see some inconsistencies in the received data compared to the data received by using PuTTY.
The data received in PuTTY:
a5 5a 0b ...
0
votes
5answers
127 views
Difference between char (int) and int in java
I have a piece of code, that receives values from a sensor(Via serialport using rxtx) and displays it. Strangely, the following code
int value = in.read();
System.out.print((char) value);
outputs ...
1
vote
0answers
73 views
Lego Mindstorms: gnu noSuchPortException after severl successful attempts
In order to send direct commands to our Lego Mindstorms Robot, we use the NXTComm and the RXTXComm (for x64) libraries.
We are able multiple times to start our Processing Applet and call
LegoNXT ...
0
votes
1answer
224 views
Having issues unloading rxtxSerial.dll
I am doing some serial communication via Java Applet and rxtx library.
Applet is working fine but when loaded more then once I am having issues with
UnsatisfiedLinkError: rxtxSerial.dll already ...
-2
votes
1answer
167 views
RXTX how to send and read data from comport
I'm new to rxtx library i just want to know how to send data and recieve data from com port using rxtx and i'm a window's user.
1
vote
1answer
1k views
Serial Port Communication Using Java & RXTX in Eclipse
To write an java application to communicate with serial port devices on windows environment , browsed in google seem to be divert to many directions also fond some of the third party tools library ...
0
votes
0answers
117 views
How can I reliably disconnect a serial port?
I am trying to use nrjavaserial which is a fork of RXTX to try to read and write to a serial port in a GUI. The data from the serial port arrives via a DataInputStream object. This means that I need ...
1
vote
2answers
316 views
java.lang.UnsatisfiedLinkError: no rxtxSerial in java.library.path debian
I trying to use rxtx serial communication library on debian and I have added librxtx.so into native library path but still this exception is occurred .
java.lang.UnsatisfiedLinkError: no ...
2
votes
0answers
33 views
iPod's Rx/Tx doesn't work well with iOS6.0, but it works fine with iOS4.x & iOS5.x
My JailBroke iPod4's Rx/Tx works fine on iOS4.x and iOS5.x version, but something is different with iOS6.x
It works when iPod4(iOS6.0) is wake up, but if iPod4 enter into deep sleep and wake up ...
2
votes
1answer
528 views
continuing communication with serial device using RXTX and Java
I need to modify the RXTX "Event Based Two Way Communication" (see http://rxtx.qbang.org/wiki/index.php/Event_based_two_way_Communication) so that I am able to write a specific response back to the ...
1
vote
0answers
160 views
Sending Several Queries in RxTx
I'm trying to send several queries at once to a device (car's ECU, specifically the ELM327) via RxTx. Here's the class that utilize RxTx:
import collection.JavaConversions._
import gnu.io._
import ...



