|
|
|||||||||
|
|||||||||
|
|||||||||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
SlickEdit: Code in over 40 languages across 7 platforms. SlickEdit’s unmatched power, speed, and flexibility allows even the most accomplished developers to write better code faster. Download a free trial today! |
|
#1
|
|||
|
|||
|
Serial comm
Hi, I'm doing the serial comm through RS232, with the following code, I cant receive the data in the sequece what I want. Eg, the transmitter send "ABC" continuously, I might receice it as "ABCABCCBAABCBAC......." etc. Anyone can tell me what is going wrong? Thanks an advance!!!
Private Sub Form_Load() With MSComm1 .CommPort = 5 .Settings = "9600,N,8,1 .RThreshold = 1 .InputLen = 0 .PortOpen = True End With End Sub Private Sub MSComm1_OnComm() DIm tmpstr as string tmpstr = MSComm1.Input Text2.Text = tmpstr End sub Regards, pingping |
|
#2
|
|||
|
|||
|
More than likely you're overrunning the buffer. You need some kind of flow control on continuous sending, or a slower baud rate, or you'll drop characters.
__________________
====== Doug G ====== I didn't attend the funeral, but I sent a nice letter saying I approved of it. --Mark Twain |
![]() |
| Viewing: ASP Free Forums > Programming > Visual Basic Programming > Serial comm |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|
|