home *** CD-ROM | disk | FTP | other *** search
- main() /* setcom.c -- initializes a port with setcom() */
- {
- puts("Turn on your modem, then press any key -- Ctrl-c, then <enter> to abort.");
- getchar();
- setcom(0,91);
- aput('H');
-
- /*
-
- Initializes communications port #0 to 300 baud,
- even parity, 1 stop bit, 8 data bits, and
- sends the character 'H' out to port #0.
-
- */
- }