473,785 Members | 2,767 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Serialport question

Hi,

In my application for PDA I use the serialport class to send data to a
navigation computer of VDO Dayton.
Everything works fine as long as it is connected to the nav-computer.
When the nav-computer is not connected to the PDA, the program hangs.
No exceptionerrors , no serialports error events, nothing.

Even if I set the WriteTimeOut property to 500, I still don't get any
messages.
I noticed that the serialport is always opened.
So the IsOpen property is always true, even is nothing is connected to the
com port.

Is there a way to test wheather something is connected to the com port?
Why is the WriteTimeOut not causing anything?

I'm using VS2005.

Please help.

rg,
Eric
Feb 18 '06 #1
3 1787
Does teh device do any hardware handshaking? There's really no standard way
to know something is there - the port will (and should) open whether or not
something is connected. The timeout should, however, work. Try setting it
to -1 just to see what happens.

-Chris
"Eric" <so*****@MicroZ oft.com> wrote in message
news:43******** **************@ text.nova.plane t.nl...
Hi,

In my application for PDA I use the serialport class to send data to a
navigation computer of VDO Dayton.
Everything works fine as long as it is connected to the nav-computer.
When the nav-computer is not connected to the PDA, the program hangs.
No exceptionerrors , no serialports error events, nothing.

Even if I set the WriteTimeOut property to 500, I still don't get any
messages.
I noticed that the serialport is always opened.
So the IsOpen property is always true, even is nothing is connected to the
com port.

Is there a way to test wheather something is connected to the com port?
Why is the WriteTimeOut not causing anything?

I'm using VS2005.

Please help.

rg,
Eric

Feb 18 '06 #2
Hi Chris,

I've tried it with setting the timeout to -1 but nothing happens.
The PDA (ppc2003) is frozen and I need to soft reset it to get it working
again.

I've got the ErrorRecieved event in my code, it should show a messagebox
when it is hit but it never is.

How long will the Write method keep trying to send one byte, is this based
on the WriteTimeOut setting?
Since the WriteTimeOut doesn't seem to work, when will the serialport stop
sending the first byte and go on to the next one or just stop?

rg,
Eric
P.s. Although addressed to mr. Chris Tacke, anyone is welkom to help. ;-)

"<ctacke/>" <ctacke_AT_Open NETCF_com> schreef in bericht
news:uw******** *****@tk2msftng p13.phx.gbl...
Does teh device do any hardware handshaking? There's really no standard
way to know something is there - the port will (and should) open whether
or not something is connected. The timeout should, however, work. Try
setting it to -1 just to see what happens.

-Chris
"Eric" <so*****@MicroZ oft.com> wrote in message
news:43******** **************@ text.nova.plane t.nl...
Hi,

In my application for PDA I use the serialport class to send data to a
navigation computer of VDO Dayton.
Everything works fine as long as it is connected to the nav-computer.
When the nav-computer is not connected to the PDA, the program hangs.
No exceptionerrors , no serialports error events, nothing.

Even if I set the WriteTimeOut property to 500, I still don't get any
messages.
I noticed that the serialport is always opened.
So the IsOpen property is always true, even is nothing is connected to
the com port.

Is there a way to test wheather something is connected to the com port?
Why is the WriteTimeOut not causing anything?

I'm using VS2005.

Please help.

rg,
Eric


Feb 20 '06 #3
forget this, please....found out hte 'hang' was caused somewhere else...
"Eric" <so*****@MicroZ oft.com> schreef in bericht
news:43******** **************@ text.nova.plane t.nl...
Hi Chris,

I've tried it with setting the timeout to -1 but nothing happens.
The PDA (ppc2003) is frozen and I need to soft reset it to get it working
again.

I've got the ErrorRecieved event in my code, it should show a messagebox
when it is hit but it never is.

How long will the Write method keep trying to send one byte, is this based
on the WriteTimeOut setting?
Since the WriteTimeOut doesn't seem to work, when will the serialport stop
sending the first byte and go on to the next one or just stop?

rg,
Eric
P.s. Although addressed to mr. Chris Tacke, anyone is welkom to help. ;-)

"<ctacke/>" <ctacke_AT_Open NETCF_com> schreef in bericht
news:uw******** *****@tk2msftng p13.phx.gbl...
Does teh device do any hardware handshaking? There's really no standard
way to know something is there - the port will (and should) open whether
or not something is connected. The timeout should, however, work. Try
setting it to -1 just to see what happens.

-Chris
"Eric" <so*****@MicroZ oft.com> wrote in message
news:43******** **************@ text.nova.plane t.nl...
Hi,

In my application for PDA I use the serialport class to send data to a
navigation computer of VDO Dayton.
Everything works fine as long as it is connected to the nav-computer.
When the nav-computer is not connected to the PDA, the program hangs.
No exceptionerrors , no serialports error events, nothing.

Even if I set the WriteTimeOut property to 500, I still don't get any
messages.
I noticed that the serialport is always opened.
So the IsOpen property is always true, even is nothing is connected to
the com port.

Is there a way to test wheather something is connected to the com port?
Why is the WriteTimeOut not causing anything?

I'm using VS2005.

Please help.

rg,
Eric



Feb 20 '06 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
17025
by: DraguVaso | last post by:
Hi, I'm experimenting with the Serial Port in VB.NET 2005. Although it isn't that easy to get any feedback from my COM-port as I thought it would be... How can I read all the Data that the port sends back? I tryed with SerialPort1.ReadLine, but that blocks the application and takes a lot of time (10 seconds!), I tryed SerialPort1.Read, but I have to read it into a buffer and has to indicate the count, but how do I know this?
0
8495
by: Joshua Moore | last post by:
I'm trying to convert from a lot of invoked code to c# 2.0 SerialPort code. I can't find a way to set fOutxCtsFlow to true (maybe CTSEnable?) and fRtsControl = RTS_CONTROL_HANDSHAKE (RtsEnable?). Also, do I need to set the handshaking? Below is the old and attempted new (that continually gets a timeout error on read. I upped the read timeout, but it's way too long NOT for it to be a handshaking or other issue than the readtimeout...
13
7822
by: Jean Paul Mertens | last post by:
Hello, Someone can tell me why I dont get serial port events in a Service, I created a separate Thread to open the port but no events are coming up (the same happens when I use the timer component, using the System.Timers.Timer it works fine) tnx in advance Jean Paul
0
385
by: ricolee99 | last post by:
Hi Everyone, I'm using the System.IO.Ports.SerialPort component to attempt to kill an existing component opened by another application. I use the following code: SerialPort serialPort = new SerialPort ("COM1"); if(serialPort.IsOpen)
2
1806
by: Jay | last post by:
Extracted from the C# example in http://msdn2.microsoft.com/en-us/library/s14dyf47.aspx... public static void Main() { string name; string message; StringComparer stringComparer = StringComparer.OrdinalIgnoreCase; Thread readThread = new Thread(Read); // Create a new SerialPort object with default settings.
3
31283
by: Adriano | last post by:
Hello, I'm developing an application in VB.NET 2005 that communicates with a device through RS232, and need to send the following sequence of hexadecimal data to the device: 0xFF, 0x01, 0xC3, 0xE3, 0xFF, 0xFF. That's the configuration:
2
5498
by: egress | last post by:
Forgive me for stupid questions for I am new to serial IO programming. I am developing an app that will need to communicate with a device via RS232 protocol using a standard 9 pin serial cable. From what I understand this can be accomplished relativly easy using .net 2.0 SerialPort component over a COM port. My question: because most newer computers don't have 9 pin serial ports (COM), can the SerialPort component use a USB connection...
6
5421
by: Keith Lee | last post by:
All: I am attempting to compile the perl module Device::SerialPort and get this error during make -- Manifying blib/man3/Device::SerialPort.3pm Can't open blib/man3/Device::SerialPort.3pm for writing: Invalid argument at /usr/lib/perl5/5.8.8/ExtUtils/Command/MM.pm line 132 make: *** Error 22 $ make all Manifying blib/man3/Device::SerialPort.3pm Can't open blib/man3/Device::SerialPort.3pm for writing: Invalid argument
10
18255
by: sklett | last post by:
I'm trying to send some printer commands (ZPLII) to an attached USB printer using the SerialPort component. I didn't get very far at all. In fact I haven't gotten anywhere. The first problem I encountered is that a call to SerialPort.GetPortNames() returns an empty string. In other words, NO port names are returned. I'm not terribly knowledgable about ports but from the Hardware Manager I did notice that I don't have the Ports and...
0
9645
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10329
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10092
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9950
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8974
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7500
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6740
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5511
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2880
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.