Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
84 views

Downloading Javax Communications API

Does anyone know where I can download the Java communications API? On the repo1.maven.org it says to download it from http://www.sun.com/download/products.xml?id=43208d3d but that redirects you to ...
2
votes
2answers
368 views

Are there any design patterns for handling serial port communications?

We are working with some new Cutting Tools that can have it's hardware parameters altered through the serial port instead of just a control panel. When the hardware parameters are altered the ...
1
vote
0answers
138 views

If Star Trek was a communications protocol [closed]

I'm trying to develop a multi-purpose, lightweight communication protocol for a microcontroller device network. Yes - this is reinventing the wheel, but I don't think this particular wheel is ...
1
vote
1answer
141 views

Serial Data Not Transmitted in C# Application

I have a C# application wherein serial (COM1) data appears to sometimes not get transmitted. Following is a simplified snippet of my code (calls to textBox writes have been removed): ...
1
vote
2answers
286 views

error detection/correction/recovery in serial protocols

I have some designing to do for a serial protocol and am running into some questions that I figure must have been considered elsewhere. So I'm wondering if there are some recommendations for best ...
0
votes
1answer
485 views

Made For iOS (MFi) Serial Communications (I/O)

I am hoping that somebody can help. Customer is requesting an app that communicates serially to iOS. I have tried to apply for the MFi developers account from Apple, but have not heard anything in ...
0
votes
3answers
458 views

Application Not Receiving Serial Data from COM Port - C++

My application is not properly receiving data from the COM port. This used to work. I don't know what happened. I know that the proper data is being sent/received over the line because I can see it ...
0
votes
1answer
181 views

Programmatically Interrupting Serial I/O when USB Device is Removed - C++

I have an application wherein serial I/O is conducted with an attached USB device via a virtual COM port. When surprise removal of the device is detected, what would be the best way to stop the ...
0
votes
4answers
373 views

Set DCB Fails When Attempting to Configure COM Port

I'm trying to write a C++ MFC application that uses the serial port (e.g. COM8). Every time I try to set the DCB it fails. If someone can point out what I'm doing wrong, I'd really appreciate it. ...
0
votes
2answers
260 views

MFC Serial Communications

I need to add serial port (e.g. COM8) communications to my MFC application. Which APIs should I be looking at to do this? I need it to be able to wait for n bytes to be in the receive queue before ...
0
votes
1answer
432 views

API/OS support for “9-bit” serial communication

Does java's javax.comm library support "9-bit" serial communication? (use of parity bit or "address bit" as an out-of-band signaling mechanism for framing information) Does the win32 communications ...