 




<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>IT Answers &#187; Serial ports</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/tag/serial-ports/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers</link>
	<description></description>
	<lastBuildDate>Tue, 21 May 2013 22:12:10 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Visual Basic 6 problems with RS-232 communications</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/visual-basic-6-problems-with-rs-232-communications/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/visual-basic-6-problems-with-rs-232-communications/#comments</comments>
		<pubDate>Thu, 11 Aug 2011 12:04:16 +0000</pubDate>
		<dc:creator>Vfafou</dc:creator>
				<category><![CDATA[RS-232]]></category>
		<category><![CDATA[Serial Communications]]></category>
		<category><![CDATA[Serial ports]]></category>
		<category><![CDATA[VB6]]></category>
		<category><![CDATA[Visual Basic 6]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hello! I have 2 problems with Visual Basic 6 mscomm32.ocx serial communications activex: 1. I&#8217;m having a new generation pci RS-232 interface with FIFO-UART 16950 and I face the problem that I can&#8217;t receive all incoming strings, but a part of them. 2. My application supports up to 6 RS-232 ports with mixed settings. I [...]]]></description>
				<content:encoded><![CDATA[<div>Hello! I have 2 problems with Visual Basic 6 mscomm32.ocx serial communications activex:</p>
<div></div>
<div>1. I&#8217;m having a new generation pci RS-232 interface with FIFO-UART 16950 and I face the problem that I can&#8217;t receive all incoming strings, but a part of them.</div>
<div></div>
<div>2. My application supports up to 6 RS-232 ports with mixed settings. I mean that the two ports are opened with BAUD 9600 and two others with BAUD 4800. It is possible to receive the same thing from all ports simultaneously but I want to process it one time. If it is being received from a port with BAUD 9600 and a port with 4800, then it is coming with a time difference and I can&#8217;t reject the one and use the other. I think that I have to make a receiving queue but I don&#8217;t figure out how could it be.</div>
<div>Any suggestions?</div>
<div></div>
<div>Thank you in advance!</div>
</div>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/visual-basic-6-problems-with-rs-232-communications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VB6 and VB.NET Serial (COM1) data error</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/vb6-and-vbnet-serial-com1-data-error/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/vb6-and-vbnet-serial-com1-data-error/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 04:29:00 +0000</pubDate>
		<dc:creator>Aattanayake</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[COM1]]></category>
		<category><![CDATA[RS232]]></category>
		<category><![CDATA[Serial ports]]></category>
		<category><![CDATA[VB 6.0]]></category>
		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hello, I&#8217;m new to .NET. I have an application that is running in VB6. It sends text through COM1 port to another device. When I converted the VB6 code to .NET the string it sends out is different! I have tried so many things and don&#8217;t know what to do. I used a serial data [...]]]></description>
				<content:encoded><![CDATA[<p>Hello,<br />
I&#8217;m new to .NET. I have an application that is running in VB6. It sends text through COM1 port to another device.</p>
<p>When I converted the VB6 code to .NET the string it sends out is different! I have tried so many things and don&#8217;t know what to do. I used a serial data analyzer and found the two strings are different even the the source code is the same.</p>
<p>VB6 source code:<br />
MSComm1.CommPort = 1<br />
MSComm1.Settings = &#8220;9600,O,8,1&#8243;<br />
MSComm1.PortOpen = True<br />
MSComm1.Output = Chr(&#038;H2B) &#038; _<br />
Chr(&#038;H4) &#038; _<br />
Chr(&#038;H3) &#038; _<br />
Chr(&#038;HE8) &#038; _<br />
Chr(&#038;H0) &#038; _<br />
Chr(&#038;H2) &#038; _<br />
Chr(&#038;HF6) &#038; _<br />
Chr(&#038;H71)<br />
MSComm1.PortOpen = False</p>
<p>The analyzer gets the following string in hex: 2B 04 03 E8 00 02 F6 71</p>
<p>VB.NET source code:<br />
Dim Port As SerialPort = New SerialPort(&#8220;COM1&#8243;, 9600, Parity.Odd, 8, StopBits.One)<br />
Port.Open()<br />
Port.Write(System.Convert.ToChar(&#038;H2B) &#038; _<br />
System.Convert.ToChar(&#038;H4) &#038; _<br />
System.Convert.ToChar(&#038;H3) &#038; _<br />
System.Convert.ToChar(&#038;HE8) &#038; _<br />
System.Convert.ToChar(&#038;H0) &#038; _<br />
System.Convert.ToChar(&#038;H2) &#038; _<br />
System.Convert.ToChar(&#038;HF6) &#038; _<br />
System.Convert.ToChar(&#038;H71))<br />
Port.Close()</p>
<p>The analyzer gets the following string in hex: 2B 04 03 0F 00 02 3F 71</p>
<p>Why is there a difference in the string?<br />
Please help me correct it&#8230;<br />
Thanks</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/vb6-and-vbnet-serial-com1-data-error/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>how to use parallel port for serial communication</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-to-use-parallel-port-for-serial-communication/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/how-to-use-parallel-port-for-serial-communication/#comments</comments>
		<pubDate>Wed, 12 May 2010 11:52:36 +0000</pubDate>
		<dc:creator>Amna</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Parallel port]]></category>
		<category><![CDATA[Serial ports]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[i want to use parallel port for spi. i dont know how to set phase and polarity for sclk.how to send and recieve data. do i need to shift data synchronized with the clock or the parallel port will do it automatically?]]></description>
				<content:encoded><![CDATA[<p>i want to use parallel port for spi. i dont know how to set phase and polarity for sclk.how to send and recieve data. do i need to shift data synchronized with the clock or the parallel port will do it automatically?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/how-to-use-parallel-port-for-serial-communication/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How do I use the serial port in Sun virtual box with Windows XP</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-do-i-use-the-serial-port-in-sun-virtual-box-with-windows-xp/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/how-do-i-use-the-serial-port-in-sun-virtual-box-with-windows-xp/#comments</comments>
		<pubDate>Thu, 07 May 2009 22:51:43 +0000</pubDate>
		<dc:creator>Leerporter</dc:creator>
				<category><![CDATA[COM1]]></category>
		<category><![CDATA[Port]]></category>
		<category><![CDATA[Serial ports]]></category>
		<category><![CDATA[Sun VirtualBox]]></category>
		<category><![CDATA[Sun VM]]></category>
		<category><![CDATA[Virtual Machines]]></category>
		<category><![CDATA[VM]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Ok here is my question. I have a windows host and another windows VM (XP). In the VM I want to access the serial port, com1, but it asks me to give the port path, I get lost there.]]></description>
				<content:encoded><![CDATA[<p>Ok here is my question. I have a windows host and another windows VM (XP). In the VM I want to access the serial port, com1, but it asks me to give the port path, I get lost there.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/how-do-i-use-the-serial-port-in-sun-virtual-box-with-windows-xp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RS-232 Port Buffer &#8211; Hardware protection</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/rs-232-port-buffer-hardware-protection/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/rs-232-port-buffer-hardware-protection/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 13:35:29 +0000</pubDate>
		<dc:creator>Flame</dc:creator>
				<category><![CDATA[Hardware devices]]></category>
		<category><![CDATA[Port Buffer]]></category>
		<category><![CDATA[RS-232]]></category>
		<category><![CDATA[Serial ports]]></category>
		<category><![CDATA[ZIF Socket]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I am looking for a device that attaches between the RS-232 port on a computer (in this case a laptop) and a Serial device (in this case an old programmable logic controller) that acts as a signal buffer. I&#8217;m NOT looking for something that stores data, rather I&#8217;m looking for a device that will protect [...]]]></description>
				<content:encoded><![CDATA[<p>I am looking for a device that attaches between the RS-232 port on a computer (in this case a laptop) and a Serial device (in this case an old programmable logic controller) that acts as a signal buffer.  I&#8217;m NOT looking for something that stores data, rather I&#8217;m looking for a device that will protect the port on the laptop from spikes as well as improperly wired or damaged ports on the PLC machines.  I&#8217;m looking at making my own, with a ZIF socket so that a damaged buffer chip (probably a MAX232) can be swapped out quickly, but I don&#8217;t want to re invent the wheel is a similar device exists.<br />
Thanks!</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/rs-232-port-buffer-hardware-protection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cisco&#8217;s 2500 series router and WAN card serial interface differences</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/ciscos-2500-series-router-and-wan-card-serial-interface-differences/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/ciscos-2500-series-router-and-wan-card-serial-interface-differences/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 22:24:22 +0000</pubDate>
		<dc:creator>NetworkingATE</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Cisco Routers]]></category>
		<category><![CDATA[Interface cards]]></category>
		<category><![CDATA[Network cards]]></category>
		<category><![CDATA[Network devices]]></category>
		<category><![CDATA[Network equipment]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Routers]]></category>
		<category><![CDATA[Serial ports]]></category>
		<category><![CDATA[WAN hardware]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[What is the difference between the serial interface of 2500 series Cisco routers and the serial interface of WAN cards (WIC-1t)? If there is no difference then is there any data-rate difference between the above two serial interfaces?]]></description>
				<content:encoded><![CDATA[<p>What is the difference between the serial interface of 2500 series Cisco routers and the serial interface of WAN cards (WIC-1t)? If there is no difference then is there any data-rate difference between the above two serial interfaces?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/ciscos-2500-series-router-and-wan-card-serial-interface-differences/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware Server on Linux &#8211; COM / Serial Port Issues</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/vmware-server-on-linux-com-serial-port-issues/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/vmware-server-on-linux-com-serial-port-issues/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 22:01:28 +0000</pubDate>
		<dc:creator>David Davis</dc:creator>
				<category><![CDATA[Linux Machine]]></category>
		<category><![CDATA[Serial ports]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[VMware on Linux]]></category>
		<category><![CDATA[VMware Server]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[We recently received the following question through the www.SearchServerVirtualization.com &#8220;Contact Us&#8221; Email address: I am running VMware on a linux machine. I cannot communicate through serial port COM1 when working in VMware. It says " Unable to connect to port COM1". Is there any specific setting that needs to be done to use serial port [...]]]></description>
				<content:encoded><![CDATA[<p>We recently received the following question through the www.SearchServerVirtualization.com &#8220;Contact Us&#8221; Email address:</p>
<pre>I am running VMware on a linux machine.
I cannot communicate through serial port COM1 when working in VMware.
It says " Unable to connect to port COM1".

Is there any specific setting that needs to be done to use serial port
COM1 while using VMware on a linux machine?

Can you please help me out with this issue?</pre>
<p>Here is my recommendation-<br />
While I haven&#8217;t personall run across this, I would recommend two things if/when I do-<br />
1. I would first make sure that you can USE the com port in Linux with a real device (ie: the com port could be disabled in the BIOS of the server)<br />
2. I would check my VMX file serial port settings to make sure that they are correct. This document has some great reference on that-</p>
<p>http://sanbarrow.com/vmx/vmx-serial-ports.html</p>
<p>Thank you,<br />
David Davis, VCP<br />
Train Signal.com VMware ESX Video Training Author &#8211; www.TrainSignal.com<br />
www.VMwareVideos.com</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/vmware-server-on-linux-com-serial-port-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Location of Management LAN port</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/location-of-management-lan-port/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/location-of-management-lan-port/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 17:47:31 +0000</pubDate>
		<dc:creator>Aprakash</dc:creator>
				<category><![CDATA[LAN]]></category>
		<category><![CDATA[LAN port]]></category>
		<category><![CDATA[Serial ports]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Which is better, a serial port on the front or back of a server/switch device for initial configuration and when the device is not working.]]></description>
				<content:encoded><![CDATA[<p>Which is better, a serial port on the front or back of a server/switch device for initial configuration and when the device is not working.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/location-of-management-lan-port/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>RS 232 is there any differance between( RS232 ) and (RS232-C) protocols</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/rs-232/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/rs-232/#comments</comments>
		<pubDate>Sun, 06 Apr 2008 05:51:48 +0000</pubDate>
		<dc:creator>Sami</dc:creator>
				<category><![CDATA[Cabling]]></category>
		<category><![CDATA[RS-232]]></category>
		<category><![CDATA[Serial ports]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[hello, is there any differance between( RS232 ) and (RS232-C) protocols?? please tell me details if possible&#8230;.. thanks a lot &#8230;..]]></description>
				<content:encoded><![CDATA[<p>hello,<br />
is there any differance between( RS232 ) and (RS232-C)  protocols??<br />
please tell me details if possible&#8230;..</p>
<p>thanks a lot &#8230;..</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/rs-232/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 3/18 queries in 0.022 seconds using memcached
Object Caching 876/930 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-22 01:44:11 -->