Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Com over RS232

Status
Not open for further replies.

cpchase

Programmer
Aug 22, 2006
1
CA
When qbasic send data is send the <Cr> and on the device im using it gets inturpeted as a flashing "M" is there anyway to tell qbasi to stop send the <CR> at the end of every print #1 command ?
 
Possibly as in print "A";
This was gw's way and suspect that q does it the same way.

Ed Fair
Give the wrong symptoms, get the wrong solutions.
 
Do you know the correct character that your device is expecting? Did you try something like:

...
print #1, "Manual Return";
print #1, chr$(13)
...



--> It's a bird! It's a plane! No, it's an OS update patch! Ahh!! <--
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top