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!

Use Text_IO to read from COM1

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
Hi everyone there,
I have to read data from serial port. Is this possible with text_io or any other solution.

Thanks
 
use this command:

DECLARE
channel_id pls_integer;
BEGIN
channel_id := DDE.INITIATE('WINWEDGE', 'COM1');
DDE.EXECUTE(channel_id, '{SENDOUT(80, 13)}', 1000);
END;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top