Is the process that sends data sequentially through a transmission medium one bit per time.
1
vote
1answer
20 views
What type of framing to use in serial communication
In a serial communication link, what is the prefered framing/sync method?
framing with SOF and escaping sequences, like in HDLC?
relying on using a header with length info and CRC?
It's an ...
4
votes
1answer
77 views
kernel driver reading ok from user space, but writing back is always 0
So I'm working my way through kernel driver programming, and currently I'm trying to build a simple data transfer between application and kernel driver.
I am using simple character device as a link ...
0
votes
0answers
19 views
GCDAsyncSocket data receiving anomalies
I'm writing an iPhone app to communicate with a serial device (through the RN-XV serial to wifi board).
The communication protocol is very basic at the moment: the iPhone sends the char 'D' and the ...
1
vote
1answer
62 views
Serial Port Communication For Android [closed]
I have made a C#.net application for windows, but now company want that application to be runnable on an Android tablet. Application is used to communicate with serial port device, writing and reading ...
0
votes
1answer
48 views
Displaying serial data of python in the web
I have the following program of python which displays serial data in the command prompt.
#!python
import time
import cgi
from serial import Serial
import subprocess
ser = Serial('COM4', 115200, ...
0
votes
1answer
143 views
Python and arduino serial communication
I have a arduino Uno connected to my laptop through USB. I am running WAMP webserver on windows 7. I have python 2.7 and py serial installed. I wrote a HTML where the buttons when clicked will invoke ...
1
vote
1answer
48 views
Bash echoing in a screen
I have this bash file:
#!/bin/bash
stty -F /dev/ttyACM0 cs8 9600 ignbrk -brkint -imaxbel -opost -onlcr -isig -icanon - iext en -echo -echoe -echok -echoctl -echoke noflsh -ixon -crtscts
...
0
votes
1answer
143 views
C# console application talking to Arduino via Bluetooth
Not a whole lot to say here other than this doesn't work, and I have no idea why.
The serial output on the Arduino is nothing. The output on the C# code goes down to waiting for a response and then ...
0
votes
1answer
77 views
Pyserial string to byte encoding to write to microcontroller
I'm trying to communicate between my PC and a microcontroller (MC). My microcontroller will read using getchar() until 4 characters have been read or it bumps into the characters '\0', '\', or '\r'.
...
1
vote
1answer
53 views
CRC16 Qustion data communications
Hi I have been trying to calculate a CRC for a device I want to write a software interface for. For simplicity I will say X is the device and Y is the hardware controller. I am looking for a nudge in ...
0
votes
1answer
59 views
Are there any replacement for Synaser Serial Communciation tool for Lazarus compiler?
I am working with the latest Lazarus compiler and have worked with Synaser for serial communication with the previous version of Lazarus. It has worked flawlessly, but now with latest version of ...
0
votes
0answers
14 views
Create serial communication in NetBSD
I'm trying to create serial communication in NetBSD. This
communication will connect the computer with a controller via RS-485.
The problem is that I don't know if it necessary some ...
0
votes
0answers
48 views
Serial communication with F28335
I am writing C to do serial communication with my microcontroller F28335. When I use Hyperterminal to do that, everything works fine. When I punch a character in Hyperterminal, F28335 will echo it ...
0
votes
2answers
118 views
pc to pc communication using rs232 connected through optical link showing FRAMING ERROR
I have set up a PC to PC optical communication link using RS232 Port.
I have used
PC1 RS232 -> MAX232A -> Optical Tx/Rx Module -> MAX232A -> RS232 - PC2
sending and receiving data using RealTerm ...
0
votes
1answer
46 views
How to solve error like Exception in thread “TimerQueue” Exception in thread “AWT-EventQueue-0” java.lang.IllegalMonitorStateException in java?
I m making app of serial communication on ARM processor for SerialPort(/dev/ttyS0).
My Processor is armv7l(512 RAM, Linux OS(debian.imag) ).I got some error which i can't understand or why it occurred ...
1
vote
1answer
45 views
Running continuous communications using QT and python
I used to use TKinter for my GUIS and am now trying to move to QT Designer. I am also new to event based programming. What I am trying to do is listen to communication on my serial port continuously ...
2
votes
2answers
123 views
Identification of packets in a byte stream
I'm having a bit of a problem with the communication to an accelerometer sensor. The sensor puts out about 8000 readings/second continuously. The sensor is plugged in to a usb port with an adaper and ...
0
votes
0answers
34 views
Error in coding for RC4 security in arduino communication
I am trying to implement RC4 encryption in MCU [i.e. Arduino UNO]. I want to set up 2 Xbee [radio] +2 Arduino for a small network where 1 Xbee+1 Arduino will work as transmitter [encrypts the data] ...
0
votes
0answers
28 views
Serial communication with jamod in java on Linux
Hello I am trying to develop a modbus master program in Linux. In windows the same program is running fine but with this settings
comm.jar placed in:
%JAVA_HOME%/lib
%JAVA_HOME%/jre/lib/ext
...
2
votes
2answers
546 views
C# Serial Communication to Arduino
I'm working on a project that involves my client software sending data to a Arduino microcontroller, AtMega32U4, through serial communication. I've looked through many answered questions so far yet ...
-1
votes
1answer
230 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 ...
0
votes
0answers
147 views
Hyperterminal works, minicom and pyserial do not
I have a 1990 model cnc controller that imports/exports programs via a RS232 interface (9600,7,E,1). When I connect using a usb-serial converter, hyperterm and winxp I am able to download the text of ...
0
votes
1answer
101 views
serial communication C/C++ linux thread safe?
My question is quite simple. Is reading and writing from and to a serial port under linux threadsafe? Can I read and write at the same time from different threads? Is it even possible to do 2 writes ...
1
vote
1answer
613 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 ...
0
votes
0answers
144 views
What is the name of this serial communication protocol?
Is there a name for the following serial communication protocol?
Each byte is sent as:
a low start bit
some (usually 8) data bits
a parity bit (optional)
1 or 2 high stop bits
I'm finding a lot ...
0
votes
0answers
186 views
Forwarding a text message via GSM modem using Java
I am using Java CommV3 drivers to interface a GSM modem (Huawei E173) with a Java Application. I am trying to forward a text message to several numbers present in a mySQL database. I always receive a ...
2
votes
1answer
146 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 ...
0
votes
1answer
17 views
What is the state of the art in labour-automation data-exchange?
I just came across ASTM E1394-97 "Transferring Information Between Clinical Instruments and Computer Systems", because a supplier offers a system supporting this standard.
It looks rather pre-DOS age. ...
0
votes
2answers
588 views
CAN Bus Protocol Implementation
I want to learn and implement CAN BUS protocol. I have implemented UART,SPI,I2C and One Wire Bus protocol using MSP430 Launchpad in software. Now I want to learn about CAN Bus protocol. I have mBed ...
3
votes
1answer
169 views
Virtual COM Communications Issue
I'm working on a Communications Device Class (CDC) driver for an embedded device, a Full Speed implementation of USB 2.0. The COM port settings are 115200, 8-bit, no parity, 1 stop bit, no flow ...
0
votes
1answer
782 views
Problems opening and closing the mscomm port in vb6 when interfacing microcontroller
the code is to get data from a microcontroller or any device from serial device using serial port,so i am having problem with port opening and getting data,am having this problem for last 20 days ...
3
votes
0answers
209 views
How to correctly stream data via Bluetooth to Android
I'm in the process of developing an application which reads data from a DAQ that streams its data over Bluetooth. The packet sizes can change, as can the sampling rate (1Hz - 512Hz), and I'm able to ...
1
vote
0answers
282 views
serial communication in MATLAB m-file
I am trying to do serial communication with my MATLAB m-file
When I write the same program in command window i mean when it get execute step by step I am getting the output from MATLAB. But when I ...
0
votes
1answer
231 views
Serial communication in Atmega128
I want send some string to PC via serial bus. In cute com its displaying the string along with some chars are missing and at the starting and end of the string its appending some hex numbers. Why this ...
0
votes
0answers
92 views
Why would write time vary when communicating over RS-485?
I'm facing problems using RS-485 to communicate with serial devices. I'm trying to write a series of packets to the serial port. And in order to send another packet I have to wait for an ACK from the ...
0
votes
1answer
178 views
Trouble in writing data on microcontroller using serial communication
I am trying to send a command to the Microcontroller using serial communication, I can compile and run following code without any error but values are not being written on the register. What am I ...
0
votes
2answers
351 views
Arduino serial input string spread over several lines
First of all, sorry for the confusing title. I'm trying to make a simple program on my arduino that echos the serial input received from the serial monitor. My code is this:
String string= "";
String ...
0
votes
1answer
274 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 ...
0
votes
0answers
222 views
GUI: Interfacing with Microcontroller [closed]
I am new to Java and I have made an interface that looks like this:
import javax.swing.*;
import java.awt.event.*;
class SerialCommunicator extends JFrame implements ActionListener{
String ...
0
votes
0answers
46 views
Serial communication headers and trailers advice sought
I need some orientation for wirelessly transmitting small data packets between AVRs. I need my transmitter to constantly transmit 3 bytes of data, and I need my receiver to constantly receive those ...
0
votes
0answers
124 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
225 views
Serial Communication with iOS External Accessory (without authentication coprocessor)
It's my first question on stackoverflow. We're developing iOS external accessory under MFi program. (serial communication using lightning connector) However, we have some problems.
Background
We ...
0
votes
2answers
265 views
Java Serial Communication PortInUseException
I have an SMS-based Java application using CommV3 drivers for Serial communication to a GSM Modem. I have two separate codes, one for sending messages and one for receiving messages. Each code works ...
0
votes
1answer
366 views
Serial communication in metro style app?
I am developing metro style app which should read data from external device using serial communication but unfortunately metro apps does not support "Serial and parallel port API ". So i thought to ...
1
vote
1answer
64 views
Filter driver vs Direct Serial Communcation
I am reverse engineering a serial communication protocol. After i decode the bits I am supposed to write an interface for it. My choices are split between writing a filter driver to intercept the data ...
0
votes
0answers
96 views
Trouble shooting minicom
If you're confident you have your port set up correctly but when you bang on the keyboard nothing gets transmitted then how can you try to narrow down what may be wrong with minicom?
I've got system ...
1
vote
1answer
224 views
operating 8051 ports from a internet
I am connecting relays at ports of microcontroller 8051. i want to operate them from website.
so, i want to tx/rx their status to computer and then upload to web server.
Something like this but i ...
1
vote
1answer
122 views
COM port interception and modification of data on Linux
I have a receipt printer connected to my COM port and every time someone prints to my receipt printer, I want to add some extra data to the data going out the COM port. I am on Linux. How can I ...
1
vote
2answers
317 views
Sending an integer serially in Arduino
I need to send an integer, say between 0-10000, to Arduino using serial communication. What's the best way of doing that?
I can think of breaking the number into an character array (eg: 500 as ...
0
votes
1answer
44 views
Can device file COMn be used for serial communication in java
I'm looking for a way of doing serial communication with an usb modem without changing my java installation. It must on linux and windows.
On linux I can read and write to /dev/ttyUSB1 using bash. ...




