Tagged Questions
0
votes
2answers
72 views
Arduino Serial communication output
I have 2 Arduinos Leonardo and I want them to communicate itself, so I did the following code:
void setup() {
Serial.begin(1200);
Serial1.begin(1200);
}
void loop() {
String outMessage = ""; ...
1
vote
1answer
37 views
Modem responds with junk value for AT Command using serial programming
Background
I am trying to connect to a serial GSM - modem of Wavecom type.
I was able to communicate with the modem using the guide
http://www.easysw.com/~mike/serial/serial.html
on my Ubuntu ...
0
votes
3answers
122 views
Is is possible to simultaneously use Arduino serial monitor while receiving data from Processing?
I am attempting to send some data from Processing to my Arduino over the serial connection so that the Arduino can control an LED strip. Could I view the serial monitor while this transfer was taking ...
1
vote
1answer
102 views
Serial communication for Arduino through website
I am working on a project which deals with Arduino. We developed a forms application in C# for navigating a car. Navigation in forms application works correctly, without any problems.
Here is the ...
-1
votes
1answer
142 views
How to format the command in order to write on serial port [closed]
I have a card/rfid reader and I am trying to create a test application for it. I do have a protocol description document from the provider but I have never wrote serial port software before and ...
1
vote
1answer
479 views
How to make Scilab open a serial communication with /dev/ttyACM0 USB port in Linux (Ubuntu)
I'm trying to open a serial communication between Scilab and Arduino. However, Arduino is always recognized by Linux Ubuntu in the /dev/tty**ACM0** port. When I write h=openserial(1,"9600,n,8,1) in ...
0
votes
1answer
48 views
Checking external hardware through serial port
In my code, I'm setting the following values:
public SerialPort comPort = new SerialPort();
comPort.PortName = portName;
The PortName can be COM17, for example.
Now if I've add two devices ...
0
votes
2answers
67 views
Serial Message Separation
I am trying to implement serial communications between a micro-controller and a c# windows application.
I have everything working correctly in the computer to micro-controller direction. But am ...
-1
votes
1answer
132 views
Communication with RS232 port in Java [duplicate]
I'm trying to solve one problem with the "communication with RS232" port using Java, because my skills on C are not so great!
The problem:
I have a dynamometer (if you care what is the machine that ...
-2
votes
1answer
243 views
JAVA GUI : To send and receive data between an MSP430 and a Laptop
I have a requirement where I need to establish communication between Laptop and an MSP 430 device. The interface should be JAVA GUI.
I have experience with MSP430 and a little knowledge of JAVA.
...
2
votes
3answers
413 views
How to send a string (serial port) , wait (timeout) and catch the reply string?
After reading this very interesting topic on stackoverflow --> How to wait for COM port receive event before sending more data in a loop
I've ran into many problems and i've tried many solutions ... ...
0
votes
1answer
200 views
Serial communication with scilab in Linux
Can you please provide some examples of serial communication with scilab in Linux. When I gave the command:
h=openserial(1,"9600,n,8,1");
I am getting the following error:
...
0
votes
0answers
111 views
Processing's Serial.stop() function doesn't appear to be working
I'm trying to send a string to my Arduino but Processing doesn't appear to be stopping the serial communication despite my asking it to. The Serial Monitor in Arduino won't work, as whenever this ...
0
votes
0answers
113 views
MODBUS auto address assignment
Does anyone know of a scheme whereby MODBUS addresses can be automatically set? In my situation I'll have a number of slaves power up and need some automatic way of assigning them addresses.
1
vote
1answer
107 views
MODBUS, is there a maximum time a device can take to respond?
In talking to a MODBUS device, is there an upper bound on how long a device can take to respond before it's considered a timeout? I'm trying to work out what to set my read timeout to. Answers for ...
2
votes
1answer
704 views
Arduino Serial Communication not receiving entire message
I have a problem with the Arduino communication. It's quite hard to describe so I cant fit it in the title. Anyway here are the following:
So I have this code for my receiving end:
...
1
vote
0answers
200 views
Communicating with a hardware through RS485 Serial Cable
I have a smart electricity meter that connects to the pc through RS485 serial cable. This hardware has a software that you can read its internal registers and view them on the software. When I tried ...
3
votes
1answer
165 views
Detecting serial port settings
From time to time I suddenly have a need to connect to a device's console via its serial port. The problem is, I never remember what port settings (baud rate, data bits, stop bits, etc...) to use with ...
11
votes
0answers
288 views
Serial Converter in Java [closed]
I'm searching for an industrial serial to USB converter.
I want to use it within my JAVA application to communicate with various devices.
Therefore the serial adapter has to provide a mode for RS232, ...
0
votes
4answers
265 views
Simple algorithm for reliable communications
So, I have worked on large systems in the past, like an iso stack session layer, and something like that is too big for what I need, but I do have some understanding of the big picture. What I have ...
0
votes
0answers
128 views
Control the system with two serial ports opened at the same time in Matlab
Can I control the system (im my case small robot) by using 2 serial ports in the same time in Matlab? I cannot use the solution I found on the matlabcentral, i.e.
s=[serial('com4'), serial('com5')];
...
0
votes
1answer
509 views
Read/Write to serial port (for UBW)
I'm trying to program the UBW in C# to take a command and give me the input back. For example, when I establish the USB connection in TeraTerm, a input v would give me a output of the current firmware ...
0
votes
2answers
2k views
How do I use COMMTIMEOUTS to wait until bytes are available but read more than one byte?
I have a C++ serial port class that has a none blocking and a blocking mode for read operations. For blocking mode:
COMMTIMEOUTS cto;
GetCommTimeouts(m_hFile,&cto);
// Set the new timeouts
...
1
vote
1answer
979 views
Linux C++ write string to COM port, read back response?
I am trying to write to the /dev/ttyACM0 port. In the command line shell I can write the string ":35\n" to the sensor I have plugged in to that port, and via putty listening on the port I can see it ...
1
vote
0answers
133 views
IO.Ports.SerialPort connection fail
I develop a software using .net framework (2.0). I communicate with several devices using serial port without any problem.
However, I try to communicate with a new one, but impossible to write or ...
4
votes
2answers
4k views
Arduino stops sending data to the serial port after a long time period
I am using an Arduino Uno rev2 device as a permanently connected device that sometimes sends signals to a PC (Windows 7 x64). Code compiled with Arduino 1.0 software from arduino.cc
Topic on ...
1
vote
2answers
73 views
Is it true that a port can be closed? [closed]
I heard someone saying that a "port should be opened" , said a person inside a closed room in our company. So I wonder that it is possible to close a port ! So is it true that a port can be closed ...
0
votes
2answers
534 views
Missing flow control data (0x13) from reading device data stream
I have written a Linux app to read & write binary data to a remote device over a USB port that is emulating a serial port.
When I read data from the device, I have a USB sniffer that shows a ...
1
vote
1answer
541 views
Data gets corrupted during transmission over the serial port
I am developing a program to communicate with an old system. I use System.IO.Ports.SerialPort for this. The problem is when I send a longer message, the message bevome corrupt. I use a line listener ...
2
votes
1answer
2k views
c# - SerialPort RS-485 and communication limits
I'm trying to communicate to a device using RS-485 through the serial port. Everything works fine, until we're trying to boost the communication to test the speed limit of the card then weird problem ...
1
vote
2answers
582 views
RS232c in VB6 help
Hey all i am new at this RS232c command sending. This is what the documents has for my Yamaha A/V RX-A2000.
PWR
[PUT Command]
@MAIN:PWR=Parameter
[GET Command]
@MAIN:PWR=?
...
0
votes
0answers
1k views
How to connect/read/write to multiple RFCOMM/SERIAL/RS232 BLUETOOTH devices simultaneously?
i am writing a software for the farming industry where an android device has to receive/transmit from a few serial bluetooth devices (tag reader, scales, drafter etc...)
so far i've managed to ...
13
votes
7answers
33k views
using serial port RS-232 in android?
I want to send signals via serial port using the JavaComm API classes on an Android device, and here is how I imagine it:
1- the Android device would be: Archos 3.2 which has android 2.2 and USB host ...
1
vote
1answer
4k views
Sending bytes to serial port from UNIX command line?
i would like to send a stream of bytes to a serial port using the command line. is this possible? my serial port is at /dev/cu.usbserial-A700dYoR on my Mac. for example, if i wanted to send the ...
0
votes
1answer
624 views
Port communication
I have a USB Modem connected to my PC with a SIM card inserted. I want to write a C# application to send SMS through the modem can any one help me with this???
another question..I have heard about ...
0
votes
1answer
78 views
How to change javacomm async. notification behavior?
I'm using the java comm library to listen for bytes coming in over a serial port. I have it setup for async. notification, i.e. have a class implementing SerialPortEventListener. Is there any way to ...
1
vote
2answers
707 views
How to receive multiple tasks at the same time in a single com port in c sharp
Im a novice in c sharp and im stuck with this task. My requirement is , I create many threads and these threads (send using COM1) have to communicate with a single serial port say COM2. All the ...
0
votes
2answers
474 views
Communication from arduino to a browser extension all run locally
I am trying to figure out how I would go about taking serial information from an Arduino which controls a Javascript browser extension I have running in an open browser locally on a computer. It ...
0
votes
1answer
697 views
RS 232 Communication in ASP.NET 3.5?
using ASP.NET 3.5 WebForm using C# 3.0, is it possible to setup a RS 232 communication with a device? I need the WebForm to be able to read and write data to the serial port. I would appreciate if ...
0
votes
1answer
145 views
Access COMPORT 1 through three different applications
I have an SMS Appliaction, which receives the messages through GPS Modem and revert back through GPS Modem. The Modem is using COM1.
Now, i need two more appliactions which can send messages through ...
2
votes
5answers
1k views
Low Latency Serial Communications In .Net
I have been researching various third party libraries and approaches to low latency serial communications in .Net. I've read enough that I have now come full circle and know as little as I did when I ...
6
votes
6answers
969 views
Is 0x9B (155decimal) a special control character? Why is it missing from ascii tables?
I'm working on an embedded system, and i'm having dramas getting it to send a certain chunk of data across the serial port. I narrowed it down and found that if a 0x9B is present in the message, it ...
1
vote
1answer
846 views
Sharing a COM port over TCP
What would be a simple design pattern for sharing a COM port over TCP to multiple clients?
For example, a local GPS device that could transmit co-ordinates to remote hosts in realtime.
So I need a ...
0
votes
4answers
2k views
0
votes
1answer
918 views
reading from serial port
to read from serial port do i need to install some package the get support in netbeans?
which packages do i need to import at the start of program?
the statement:
import javax.comm.*;
results in ...
0
votes
2answers
2k views
send string to serial
Buongiorno,
I'm trying to send a simple string to a serial port to command an instrument for noise measures.
The strings are very easy:
"M 1" = instrument on
"M 2" = instrument off
"M 3" = begin the ...
0
votes
1answer
591 views
How can i CloseComm, OpenComm, WriteComm and ReadComm with the windows unit?
I have an old comm unit that uses WinTypes,WinProcs. As i understand these were merged too the Windows unit.
Are there similar functions in the Windows unit?
4
votes
4answers
3k views
Serial Port Redirection or Splitting
I am looking for a book and or a code sample of how to do serial port redirection or port splitting. I write a lot of com port applications and want to write a monitor application that will allow me ...
0
votes
1answer
141 views
How to get information passing through COM ports on Windows?
I'm programming a solution that requires parsing some data sent to a printer that is attached to a serial port. It's only reading, I don't need to interfere with the communication, but I need it to ...
0
votes
2answers
2k views
Find the serial port settings in Delphi
Hi I have the need to find the Baud rate and other settings for a serial port, Looking about on the web, it looks like I should be using GetCommConfig, This returns a TCommConfig record with what I ...
