active questions tagged serial - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T05:41:16Zhttp://stackoverflow.com/feeds/tag/serialhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1779742/can-i-use-a-usb-to-serial-adapter-to-talk-to-my-development-board-from-vmware-fus1Can I use a USB-to-serial adapter to talk to my development board from VMWare Fusion?sigjuice2009-11-22T19:45:25Z2009-11-23T21:38:04Z
<p>I have a Linux virtual machine running on VMWare Fusion (on Mac OS X) that I intend to use as a development environment for an embedded system. Would it be possible for my Linux VM to talk to my embedded system's serial port using a USB-to-serial adapter? Any recommendations for what sort of adapter I should get?</p>
http://stackoverflow.com/questions/1141362/data-collection-with-android-via-usb2Data collection with Android via USBwebclimber2009-07-17T03:43:51Z2009-11-21T16:06:45Z
<p>What would be the best way to access the USB as a serial port on a android device (HTC Magic) ?
I am thinking about a OBD-II interface, can I do this on a startdard phone or more likely I'll need a modified firmware ?</p>
http://stackoverflow.com/questions/1767648/how-to-uniquely-identify-a-computer-based-on-gmail-skype-and-apple-updates-1How to uniquely identify a computer based on Gmail, Skype and Apple updates [closed]Pete2009-11-20T00:47:36Z2009-11-20T00:49:34Z
<p>Hi folks,</p>
<p>I bought an iMac some time ago. Although it was stolen some time ago, I managed to get the Serial Number from the provider who sold it to me. The point is that I know who took it and also that he is using it.</p>
<p>I have received gmail from him and also Skype. Could I somehow identify that serial number based on those messages?</p>
<p>If not, what about the Apple updates? Do they keep track of the serial numbers and IPs from where the update has been done?</p>
<p>I´ve looked at the different threads here and nobody seems to have an answer to this.</p>
http://stackoverflow.com/questions/1317276/send-file-over-serial-port-with-linux-and-c2Send file over serial port with Linux and CManuel Abeledo2009-08-22T23:12:32Z2009-11-18T12:43:21Z
<p>Hi all, i'm developing an application that reads data from a serial port and sends it over a TCP connection, and vice versa. Unfortunately, while reading data from serial port, it never stops. It does not detect EOF mark, nor EOL or some other special character.</p>
<p>So, how could i detect an end of file (or "end of connection") over serial port in C and Linux?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1739826/serial-programming-measuring-time-between-characters1Serial programming: measuring time between charactersNick Sonneveld2009-11-16T02:57:14Z2009-11-17T23:44:42Z
<p>I am sending/receiving data over a serial line in Linux and I would like to find the delay between characters.</p>
<p>Modbus uses a 3.5 character delay to detect message frame boundaries. If there is more than a 1.5 character delay, the message frame is declared incomplete.</p>
<p>I'm writing a quick program in C which is basically</p>
<pre><code>fd = open(MODEMDEVICE, O_RDWR | O_NOCTTY | O_NONBLOCK);
// setup newtio
....
tcsetattr(fd, TCSANOW, &newtio);
for(;;) {
res = read(fs, buf, 1);
if (res > 0) {
// store time in milliseconds?
//do stuff
}
}
</code></pre>
<p>Is there some way of measuring the time here? Or do I need to look at retrieving data from the serial line in a different way?</p>
<p>I've also tried hooking into SIGIO to get a signal whenever there is data but I seem to get data 8 bytes at a time.</p>
<p>(yes, I know there exist some modbus libraries but I want to use this in other applications)</p>
http://stackoverflow.com/questions/1748849/getting-mother-board-serial-number-without-wmi-and-without-authentication0Getting mother board serial number without WMI and without authenticationSajid2009-11-17T13:25:07Z2009-11-17T14:11:28Z
<p>Is there any way to get mother board serial number without using WMI and without authentication of remote machine.</p>
http://stackoverflow.com/questions/1707940/send-string-to-serial0send string to serialStefano2009-11-10T13:23:21Z2009-11-10T14:14:27Z
<p>Buongiorno,
I'm trying to send a simple string to a serial port to command an instrument for noise measures.<br>
The strings are very easy:<br>
"M 1" = instrument on<br>
"M 2" = instrument off<br>
"M 3" = begin the measure<br>
"M 4" = stop the measure<br></p>
<p>I've found this program:</p>
<pre><code>import serial
ser = serial.Serial(0) #Seleziona la porta seriale COM4
ser.baudrate = 9600 #Imposta il baudrate a 9600bps
ser.open() #apre la porta com
ser.close()
#verifica se la porta e' aperta
if ser.isOpen():
com_num = ser.portstr
print ("Porta " + com_num + " aperta")
#invia il comando alla seriale
buffer = "M 3"
ser.write(buffer)
#Loop d'attesa caratteri
num = 0
while num == 0:
num = ser.inWaiting()
#scarica il buffer della seriale
buffer = ser.read(num)
print ("Dati ricevuti dalla seriale:")
print buffer
ser.close() #chiude la porta
else:
print ("Porta seriale gia' in uso o inesistente")
s = raw_input("digita INVIA per uscire")
</code></pre>
<p>USING LINUX<br>
The program is ok and I have only some problems with the type of string. In fact I had to insert a carriage return but I can't to do it. <br>
I said that the program is okay because the instrument turn from off to on when I made my first connection, and on video I read "Porta /dev/ttyS= aperta" thet means "open". But this appens for any kind of string I send. In fact this is like an "iniatilization" of the port, not a really communication.<br>
Then I don't manage to send string in the correct way, may be for the problem of carriage return.</p>
<p>USING WINDOWS<BR>
I can't open the port, I have an error of Denied Access to the port, this is the error: <br>
<code>
Traceback (most recent call last):<br>
File "C:/d.py", line 9, in <br>
ser.open() #apre la porta com<br>
File "C:\Programmi\Python26\lib\site-packages\serial\serialwin32.py", line 53, in open
raise SerialException("could not open port %s: %s" % (self.portstr, ctypes.WinError()))
serial.serialutil.SerialException: could not open port COM1: [Error 5] Accesso negato.</code></p>
<p>Can you help me to:<br>
1. Manage to run the program under windows<br>
2. Manage to give in the exactly way the string with carriage return???<br></p>
<p>Thak you very much.<br>
Stefano</p>
http://stackoverflow.com/questions/1693759/any-command-line-com-port-query-tools0any command line com port query tools?c_programmer2009-11-07T17:20:08Z2009-11-07T17:34:39Z
<p>ok folks, heres my dilemma i want to make a chat program that uses sms as its base engine.. to do this i need to communicate with my gsm phone via bluetooth attached to com 7 on my computer.. i can do this fine using hyperterminal, tera term etc. but to hav an un-obtrusive, friendly interface <strong>i need a command line tool to send AT commands, (and receive responses) to/from my mobile phone through my com port</strong>.. i have been searching for days to no avail.. please help</p>
http://stackoverflow.com/questions/1659283/macpython-programmatically-finding-all-serial-ports0MacPython: programmatically finding all serial portsupgrayd2009-11-02T03:16:12Z2009-11-02T03:36:18Z
<p>I am looking for a solution to programmatically return all available serial ports with python.</p>
<p>At the moment I am entering <code>ls /dev/tty.*</code> or <code>ls /dev/cu.*</code> into the terminal to list ports and hardcoding them into the pyserial class.</p>
http://stackoverflow.com/questions/1367580/steps-to-publish-software-to-be-purchased-via-registration2Steps to publish Software to be purchased via RegistrationThorsten Lorenz2009-09-02T13:03:34Z2009-11-01T21:56:16Z
<p>I'm about to get finished developing a windows application which I want to release as shareware. It was developed in C# and will be running on .Net 3.5+ machines.
To use it the user will have to be online.</p>
<p>My intent is to let the user try it for 30 days and then limit its functionality until a registration is purchased.</p>
<p>The installer will be made available via an msi file.</p>
<p>Could anyone give the general steps on how to implement this?
Here are some more specific questions:
Since I am trying to avoid having to invest a lot upfront in order to establish an e-commerce site, I was thinking of a way to just let the user pay somehow, while supplying his email in which he then receives the unlock key.
I found some solutions out there like listed here:
<a href="http://www.blackcatsystems.com/regservices/" rel="nofollow">Registration services</a></p>
<p>I am still not sure, if they are the way to go. </p>
<p>One of my main concerns is to prevent the reuse if a given serial, e.g. if two users run the program with the same serial at the same time, this serial should disabled or some other measure be taken.
Another point is, that my software could potentially be just copied from one computer to the other without using an installer, so to just protect the installer itself will not be sufficient.</p>
<p>Maybe someone who already went though this process can give me some pointers, like the general steps involved (like 1. Get domain, 2. Get certain kind of webhost ....) and address some of the issues I mentioned above.</p>
<p>I'm thankful for any help people can give me.</p>
http://stackoverflow.com/questions/1391402/problem-receving-in-rxtx0Problem receving in RXTXdrhorrible2009-09-08T00:23:55Z2009-10-29T08:41:07Z
<p>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 used on my other projects, but I have a weird problem I've never seen before. </p>
<p><strong>The Problem</strong></p>
<p>The device works fine, because when I connect with hyperterminal, I send things and receive what I expect, and <a href="http://www.serial-port-monitor.com/" rel="nofollow">Serial Port Monitor</a>(SPM) reflects this. </p>
<p>However, when I run the simple hyperterminal-clone I wrote to diagnose the problem I'm having with my main app, bytes are sent, according to SPM, but nothing is received, and my SerialPortEventListener never fires. Even when I check for available data in the main loop, <code>reader.ready()</code> returns <code>false</code>. If I ignore this check, then I get an exception, details below.</p>
<p><strong>Relevant section of connect() method</strong></p>
<pre><code>// Configure and open port
port = (SerialPort) CommPortIdentifier.getPortIdentifier(name)
.open(owner,1000)
port.setSerialPortParams(baud, databits, stopbits, parity);
port.setFlowControlMode(fc_mode);
final BufferedReader br = new BufferedReader(
new InputStreamReader(
port.getInputStream(),
"US-ASCII"));
// Add listener to print received characters to screen
port.addEventListener(new SerialPortEventListener(){
public void serialEvent(SerialPortEvent ev) {
try {
System.out.println("Received: "+br.readLine());
} catch (IOException e) { e.printStackTrace(); }
}
});
port.notifyOnDataAvailable();
</code></pre>
<p><strong>Exception</strong></p>
<pre><code>java.io.IOException: Underlying input stream returned zero bytes
at sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:268)
at sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:306)
at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:158)
at java.io.InputStreamReader.read(InputStreamReader.java:167)
at java.io.BufferedReader.fill(BufferedReader.java:136)
at java.io.BufferedReader.read(BufferedReader.java:157)
at <my code>
</code></pre>
<p><strong>The big question (again)</strong></p>
<p>I think I've eliminated all possible hardware problems, so what could be wrong with my code, or the RXTX library? </p>
<p><strong>Edit: something interesting</strong></p>
<p>When I open hyperterminal after sending a bunch of commands from java that should have gotten responses, all of the responses appear immediately, as if they had been put in the buffer somewhere, but unavailable.</p>
<p><strong>Edit 2: Tried something new, same results</strong></p>
<p>I ran the code example found <a href="http://rxtx.qbang.org/wiki/index.php/Two%5Fway%5Fcommuncation%5Fwith%5Fthe%5Fserial%5Fport" rel="nofollow">here</a>, with the same results. No data came in, but when I switched to a new program, it came all at once.</p>
<p><strong>Edit 3</strong></p>
<p>The hardware is fine, and even a different computer has the same problem. I am not using any sort of USB adapter.</p>
<p>I've started using <a href="http://technet.microsoft.com/en-us/sysinternals/bb896644.aspx" rel="nofollow">PortMon</a>, too, and it's giving me some interesting results. Hyperterminal and RXTX are not using the same settings, and RXTX always polls the port, unlike HyperTerminal, but I still can't see what settings would affect this. As soon as I can isolate the configuration from the constant polling, I'll post my PortMon logs.</p>
<p><strong>Edit 4</strong></p>
<p>Is it possible that some sort of Windows update in the last 3 months could have caused this? It has screwed up one of my MATLAB mex-based programs once.</p>
<p><strong>Edit 5</strong></p>
<p>I've also noticed some things that are different between HyperTerminal, RXTX, and a separate program I found that communicates with the device (but doesn't do what I want, which is why I'm rolling my own program)</p>
<ul>
<li>HyperTerminal - set to no flow control, but Serial Port Monitor's RTS and DTR indicators are green</li>
<li>Other program - not sure what settings it thinks it's using, but only SPM's RTS indicator is green</li>
<li>RXTX - no matter what flow control I set, only SPM's CTS and DTR indicators are on.</li>
</ul>
<p>From Serial Port Monitor's help files (paraphrased): </p>
<pre><code>the indicators display the state of the serial control lines
RTS - Request To Send
CTS - Clear To Send
DTR - Data Terminal Ready
</code></pre>
http://stackoverflow.com/questions/709063/scriptable-terminal-program-for-modem-testing0Scriptable terminal program for modem testing debita2009-04-02T09:52:19Z2009-10-25T03:00:03Z
<p>I have to use AT commands to setup my dial up modem (modulation seleccion, speed, etc), and dial other modem. Once the connection is stablished I have to transfer/receive files via zmodem, xmodem... </p>
<p>I have to run a batch of tests with different speeds, modulations (v.92, v.90, v.34...) so i need a scriptable terminal program (hyperterminal can't do this). It has to be in windows. </p>
http://stackoverflow.com/questions/1609127/c-serial-port-only-responding-once-using-write1C++ Serial Port Only Responding Once Using Write()Pfeffer2009-10-22T18:30:42Z2009-10-22T22:50:38Z
<p>All the code below works. My device responds, C,7 is a reset. When I run this the second time it doesn't respond. If I manually turn my device off and on, then run this script again it works. But not if I press the button to run the script the second time.</p>
<p>RS232: 57600,8,N,1</p>
<p>Any ideas?? Is there any more information needed to solve this?</p>
<p>*Also when I get this working I'm going to have to use the read() function to get the devices responses. Does anyone know the correct format I need to use, based on the below code? Sorry I'm new to C++...I'm more of a PHP guy.</p>
<p>*I also don't know if 1024 is right, but it seems to work so eh...</p>
<p>Thanks so much!</p>
<pre><code>#include <termios.h>
int fd;
struct termios options;
fd=open("/dev/tty.KeySerial1", O_RDWR | O_NOCTTY | O_NDELAY);
fcntl(fd, F_SETFL, 0);
tcgetattr(fd,&options);
options.c_ispeed=57600;
options.c_ospeed=57600;
options.c_cflag |= (CLOCAL | CREAD);
options.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG);
options.c_cflag &= ~CSTOPB;
options.c_lflag &= ~ECHO;
options.c_oflag &= ~ECHO;
options.c_oflag &= ~OPOST;
options.c_cflag |= CS8;
options.c_cflag |= CRTSCTS;
options.c_cc[VMIN] = 0;
options.c_cc[VTIME] =10;
tcflush(fd, TCIFLUSH);
tcsetattr(fd,TCSANOW,&options);
write(fd, "C,7\r\n", 1024);
close(fd);
</code></pre>
http://stackoverflow.com/questions/1596401/c-serial-port-question0C++ Serial Port QuestionPfeffer2009-10-20T18:14:36Z2009-10-21T20:59:12Z
<p><strong>Problem</strong>:
I have a hand held device that scans those graphic color barcodes on all packaging. There is a track device that I can use that will slide the device automatically. This track device functions by taking ascii code through a serial port. I need to get this thing to work in FileMaker on a Mac. So no terminal programs, etc...</p>
<p><strong>What I've got so far</strong>:
I bought a Keyspan USB/Serial adapter. Using a program called ZTerm I was successful in sending commands to the device.
Example:
"C,7^M^J"</p>
<p>I was also able to do the same thing in Terminal using this command: screen /dev/tty.KeySerial1 57600
and then type in the same command above(but when I typed in I just hit Control-M and Control-J for the carriage return and line feed)</p>
<p>Now I'm writing a plug-in for FileMaker(in C++ of course). I want to get what I did above happen in C++ so when I install that plug-in in FileMaker I can just call one of those functions and have the whole process take place right there.</p>
<p>I'm able to connect to the device, but I can't talk to it. It is not responding to anything.</p>
<p>I've tried connecting to the device(successfully) using these:</p>
<pre><code>FILE *comport;
if ((comport = fopen("/dev/tty.KeySerial1", "w")) == NULL){...}
</code></pre>
<p>and</p>
<pre><code>int fd;
fd = open("/dev/tty.KeySerial1", O_RDWR | O_NOCTTY | O_NDELAY);
</code></pre>
<p>This is what I've tried so far in way of talking to the device:</p>
<pre><code>fputs ("C,7^M^J",comport);
</code></pre>
<p><em>or</em></p>
<pre><code>fprintf(comport,"C,7^M^J");
</code></pre>
<p><em>or</em></p>
<pre><code>char buffer[] = { 'C' , ',' , '7' , '^' , 'M' , '^' , 'J' };
fwrite (buffer , 1 , sizeof(buffer) , comport );
</code></pre>
<p><em>or</em></p>
<pre><code>fwrite('C,7^M^J', 1, 1, comport);
</code></pre>
<p><strong>Questions</strong>:
When I connected to the device from Terminal and using ZTerm, I was able to set my baud rate of 57600. I think that may be why it isn't responding here. But I don't know how to do it here.... Does any one know how to do that? I tried this, but it didn't work:</p>
<pre><code>comport->BaudRate = 57600;
</code></pre>
<p>There are a lot of class solutions out there but they all call these include files like termios.h and stdio.h. I don't have these and, for whatever reason, I can't find them to download. I've downloaded a few examples but there are like 20 files in them and they're all calling other files I can't find(like the ones listed above). Do I need to find these and if so where? I just don't know enough about C++ Is there a website where I can download libraries??</p>
<p>Another solution might be to put those terminal commands in C++. Is there a way to do that?</p>
<p>So this has been driving me crazy. I'm not a C++ guy, I only know basic programming concepts. Is anyone out there a C++ expert? I ideally I'd like this to just work using functions I already have, like those fwrite, fputs stuff.
Thanks!</p>
http://stackoverflow.com/questions/1592989/how-can-i-closecomm-opencomm-writecomm-and-readcomm-with-the-windows-unit0How can i CloseComm, OpenComm, WriteComm and ReadComm with the windows unit?Makaku002009-10-20T07:29:45Z2009-10-20T07:33:31Z
<p>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?</p>
http://stackoverflow.com/questions/1468966/rad-and-blinkm-how-to-control-a-blinkm-with-an-arduino-through-rad1RAD and BlinkM, how to control a BlinkM, with an Arduino through RADjpsilvashy2009-09-23T23:04:48Z2009-10-16T20:32:41Z
<p>So I'm running <a href="http://rad.rubyforge.org/" rel="nofollow">RAD</a> on my MacBook, I've been able to send serial commands with <code>screen</code> to the device and just light LEDs and simple stuff with the pins connected to the Arduino, however I have been unable to use any of the <a href="http://thingm.com/products/blinkm" rel="nofollow">blinkM</a> methods that RAD offers. They just fail to compile.</p>
<p>Does anyone know how to control a blinkM with RAD?</p>
http://stackoverflow.com/questions/948859/how-to-get-serial-from-symbol-mc-3000-or-any-symbol-device0How to get Serial # from Symbol MC 3000 or any Symbol deviceShaikh Nazim2009-06-04T06:24:33Z2009-10-16T12:00:01Z
<p>How to get Serial # from Symbol MC 3000 or any Symbol device?</p>
http://stackoverflow.com/questions/1158427/reading-the-serial-number-of-usb-storage-device-in-vb0Reading the serial number of USB storage device in VbLingesh2009-07-21T10:41:28Z2009-10-09T09:00:07Z
<p>Is it possible to read the serial number of a USB drive using VB.</p>
http://stackoverflow.com/questions/1540783/serial-port-access-in-adobe-air1Serial port access in Adobe-AirBob Breznak2009-10-08T22:07:55Z2009-10-09T01:41:24Z
<p>I am looking to use Adobe Air to visualize information coming from the Serial port. Is there a way to do this naively in Air? I'm assuming not. </p>
<p>If this is the case, would my best route be to create a native application that makes the serial port available via a TCP/IP connection then connect to it locally? or would a different socket type be available?</p>
<p>With this solution, is there a way to bundle a native app with an Air app so that the user would have a 1-step solution?</p>
<p>Thanks,
Bob</p>
http://stackoverflow.com/questions/1497216/serial-communication-terminal-alternatives-for-windows2Serial communication terminal alternatives for windowsfakeleft2009-09-30T10:18:31Z2009-09-30T10:44:47Z
<p>I'm looking for a winxp terminal tool that will send/receive raw bytes, not just printable ASCII like the hyperterminal that ships with winxp does. Preferably open-source.</p>
http://stackoverflow.com/questions/1264263/ho-to-read-data-through-serial-communication0Ho to read data through Serial Communication?buddi2009-08-12T04:51:52Z2009-09-26T06:00:03Z
<p>I am sending data through serial port on Windows.But when i am going to read that data the system goes in infinite loop.System also hangs.Please give me the solution if anyone finds it.</p>
http://stackoverflow.com/questions/1445387/how-do-you-design-a-serial-command-protocol-for-an-embedded-system11How do you design a serial command protocol for an embedded system?jparker2009-09-18T15:46:16Z2009-09-25T14:23:47Z
<p>I have an embedded system I'm communicating with over serial. The command structure right now is designed to be operated interactively: it displays a prompt, accepts a few commands, and displays results in a human-readable form.</p>
<p>I'm thinking about changing this to a more machine-usable format, so I can talk to it through a MATLAB GUI without too much trouble (right now it's hiccuping on the interactive prompts and varying message lengths, etc.).</p>
<p>So is there a document or standard somewhere that describes how to design a good serial command protocol for your embedded system?</p>
http://stackoverflow.com/questions/1101692/using-open2300-with-ubuntu1Using open2300 with UbuntuGawain2009-07-09T03:23:25Z2009-09-14T02:08:33Z
<p>Hello,</p>
<p>I am currently running Ubuntu 8.10 and have been trying to use <a href="http://www.lavrsen.dk/foswiki/bin/view/Open2300/WebHome" rel="nofollow"> Open2300</a> to read data from a Lacrosse WS-2310 weather station and report it to the WUnderground server. The program compiles fine but when I try to run it, it does one of two things: usually it pauses for about 4 minutes, then prints "could not reset" to the screen. But sometimes it just hangs forever. It seems like my computer is unable to communicate with the weather station.</p>
<p>I have set the serial port as /dev/ttyS0 in the open2300.conf file and i have also tried /dev/ttyS1, /dev/ttyS2, etc with the same result. As far as I can tell, there are no other settings regarding how Open2300 communicates with the device. Is my serial port locked somehow?</p>
<p>It could be something as simple as an incorrect configuration for my serial port or something, but I would have no idea how to check that or change the configuration. Any help would be greatly appreciated.</p>
<p>thanks,<br />
Gawain</p>
<p>EDIT:
I tried some tests that i found online and everything seems to be working with my serial port...</p>
<pre><code>gawain@gawain:~$ ls -l /dev/ttyS*
crw-rw---- 1 root dialout 4, 64 2009-07-09 10:01 /dev/ttyS0
crw-rw---- 1 root dialout 4, 65 2009-07-09 08:56 /dev/ttyS1
crw-rw---- 1 root dialout 4, 66 2009-07-09 08:56 /dev/ttyS2
crw-rw---- 1 root dialout 4, 67 2009-07-09 08:56 /dev/ttyS3
gawain@gawain:~$ setserial -a /dev/ttyS0
/dev/ttyS0, Line 0, UART: 16550A, Port: 0x03f8, IRQ: 4
Baud_base: 115200, close_delay: 50, divisor: 0
closing_wait: 3000
Flags: spd_normal skip_test
gawain@gawain:~$ setserial -g /dev/ttyS*
/dev/ttyS0, UART: 16550A, Port: 0x03f8, IRQ: 4
/dev/ttyS1, UART: 8250, Port: 0xd028, IRQ: 18
/dev/ttyS2, UART: 8250, Port: 0xd040, IRQ: 18
/dev/ttyS3, UART: 8250, Port: 0xd050, IRQ: 18
gawain@gawain:~$ echo 12345 > /dev/ttyS0
gawain@gawain:~$ dmesg | tail -3
[ 144.424259] ppdev0: unregistered pardevice
[ 145.692199] ppdev0: registered pardevice
[ 145.740052] ppdev0: unregistered pardevice
</code></pre>
<p>I also tried changing the serial port name to /dev/ttys0 (with a lowercase S) and in that case it gave me a different error, "Unable to open serial device." This suggests to me that it is able to open /dev/ttyS0 but something else is preventing it from reading the weather station. Any ideas? thanks.</p>
http://stackoverflow.com/questions/1228567/how-to-call-the-rj45-as-a-serial-port-for-interfacing1How to call the RJ45 as a serial port for interfacing?Nicholas Sullivan2009-08-04T16:34:31Z2009-09-10T18:42:46Z
<p>Hi,</p>
<p>I'm currently working on a serial interfacing project based upon connecting to the rs232 port. However, seeing as a decent number of laptops and/or PC's seem like they might have their rs232 ports disappear within the next 5 years, I was considering using the RJ45 modular port for my project (EIA/TIA 568). However, I'm not quite sure how to denominate it when accessing the port through the Win32API (I'm programming in C++). It's currently programmed to "COM1". Does anyone know how I can find out what this port is called or how to configure it so it can be used in this manner?</p>
<p>Thank you,</p>
<p>Nick Sullivan</p>
http://stackoverflow.com/questions/1391946/is-constant-polling-in-rxtx-necessary0Is constant polling in RXTX necessary?drhorrible2009-09-08T04:19:27Z2009-09-08T04:19:27Z
<p>While trying to figure out <a href="http://stackoverflow.com/questions/1391402/problem-receving-in-rxtx">this problem</a> (any help there is appreciated), I ran RXTX while monitoring its activity using <a href="http://technet.microsoft.com/en-us/sysinternals/bb896644.aspx" rel="nofollow">PortMon</a> and noticed that RXTX constantly checks if data is available, even when the Java client reads from the gnu.io.SerialPort object only through a SerialPortEventListener. </p>
<p>Why is this? Is it a poor implementation choice by the RXTX folks, a poor API choice by Sun (since RXTX follows the javax.comm API), or a limitation of running Java supported by native code?</p>
<p>Hyperterminal, on the other hand, does no polling (and works without a problem). Does it have access to some hidden Windows system calls that let it do this?</p>
http://stackoverflow.com/questions/1357194/prefered-method-of-notifying-upper-layers-about-received-message1Prefered method of notifying upper layers about received messagePeppe2009-08-31T12:17:55Z2009-08-31T12:37:11Z
<p>Hi, I'm writing a RS485 driver for an embedded C project.
The driver is listening for incoming messages and should notify the upper layer application when a complete message is received and ready to be read. </p>
<p>What is the prefered way to do this? </p>
<p>By using interrupts? Trigger a SW interrupt and read the message from within the isr.</p>
<p>Let the application poll the driver periodically?</p>
http://stackoverflow.com/questions/1319132/comprehesive-information-on-serial-ports-and-programming5Comprehesive information on serial ports and programming?Newton Falls2009-08-23T17:51:40Z2009-08-24T13:18:43Z
<p>What are some <em>comprehesive</em> sources on serial programming?</p>
<p>Ideally they would cover things like:</p>
<ul>
<li>history of devices</li>
<li>current and future uses</li>
<li>how serial devices work</li>
<li>protocols</li>
<li>and, of course, how to program, preferably in C/C++</li>
</ul>
http://stackoverflow.com/questions/1291624/microcrontroller-output-to-python-cgi-script1microcrontroller output to python cgi scriptMichael Craze2009-08-18T03:22:26Z2009-08-24T02:56:48Z
<p>I bought this temperature sensor logger kit: <a href="http://quozl.netrek.org/ts/" rel="nofollow">http://quozl.netrek.org/ts/</a>. It works great with the supplied C code, I like to use python because of its simplicity, so I wrote a script in python that displays the output from the microcontroller. I only have one temperature sensor hooked up to the kit. I want the temperature to be displayed on a web page, but can't seem to figure it out, I'm pretty sure it has something to do with the output from the micro having a \r\n DOS EOL character and linux web servers do not interpret it properly. The book I have says "Depending on the web server you are using, you might need to make configuration changes to understand how to serve CGI files." I am using debian and apache2 and basic cgi scripts work fine.</p>
<p>Here is my code for just displaying the sensor to the console (this works fine):</p>
<pre><code>import serial
ser = serial.Serial('/dev/ttyS0', 2400)
while 1:
result = ser.readline()
if result:
print result
</code></pre>
<p>Here is my test.cgi script that works:</p>
<pre><code>#!/usr/bin/python
print "Content-type: text/html\n"
print "<title>CGI Text</title>\n"
print "<h1>cgi works!</h1>"
</code></pre>
<p>Here is the cgi script I have started to display temp (doesn't work - 500 internal server error):</p>
<pre><code>#!/usr/bin/python
import sys, serial
sys.stderr = sys.stdout
ser = serial.Serial('/dev/ttyS0', 2400)
print "Content-type: text/html\n"
print """
<title>Real Time Temperature</title>
<h1>Real Time Temperature:</h1>
"""
#result = ser.readline()
#if result:
print ser.readline()
</code></pre>
<p>If i run python rtt.cgi in the console it outputs the correct html and temperature, I know this will not be real time and that the page will have to be reloaded every time that the user wants to see the temperature, but that stuff is coming in the future.. From my apache2 error log it says:
malformed header from script. Bad header= File "/usr/lib/cgi-bin/rtt.c: rtt.cgi</p>
http://stackoverflow.com/questions/1311459/c-serialport-speed0C# serialPort speedMarekK2009-08-21T11:39:44Z2009-08-22T17:24:30Z
<p>Hi</p>
<p>I am developing some monitoring tool for some kind of protocol based on serial communication.</p>
<p>Serial BaudRate=187,5kb
I use System.IO.Ports.SerialPort class.</p>
<p>This protocol has 4 kinds of frames. They have 1Byte,3Bytes,6Bytes, 10-255Bytes. <strong>I can work with them but I receive them too late to respond</strong>.</p>
<p>For the beginning I receive first packed after ex. 96ms (too late), and it contains about 1000B. This means 20-50 frames (too much, too late).
Later its work more stable, 3-10Bytes but it is still too late because it contains 1-2 frames. Of Course 1 frame is OK, but 2 is too late.</p>
<p>Can you point me how can I deal with it more reliable? I know it is possible.</p>
<p>Revision1:</p>
<p>I tried straight way:</p>
<pre><code>private void serialPort1_DataReceived(object sender, SerialDataReceivedEventArgs e)
{
if (!serialPort1.IsOpen) return;
this.BeginInvoke(new EventHandler(this.DataReceived));
}
</code></pre>
<p>And Backgroud worker:
And ... new Tread(Read)
and... always the same. Too late, too slow.
Do I have to go back to WinApi and import some kernel32.dll functions?</p>
<p>Revision 2:
this is the part of code use in the Treading way:</p>
<pre><code>int c = serialPort1.BytesToRead;
byte[] b = new byte[c];
serialPort1.Read(b, 0, c);
</code></pre>
<p>I guess it is some problem with stream use inside SerialPort class. Or some synchronization problem.</p>
<p>Revision 3:
I do not use both at once!! I just tried different ways.</p>
<p>Regards
MarekK</p>
http://stackoverflow.com/questions/1310354/a-look-into-serialport0A look into serialPortMarekK2009-08-21T06:42:42Z2009-08-21T15:11:59Z
<p>Hi
You wrote at: <a href="http://stackoverflow.com/questions/797426/opened-serialport-crashes-c-application">Opened SerialPort crashes C# application</a></p>
<p>"A look into the .NET Framework source code helped a lot. But I think the thrown ObjectDisposedException should be caught by the SerialPort, not by the user."</p>
<p>I'd like to take a look on source code for serialPort. How can I do it?</p>
<p>Regards.
Marek</p>