home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / comp / os / os2 / 329 < prev    next >
Encoding:
Internet Message Format  |  1992-09-15  |  1.4 KB

  1. Xref: sparky comp.os.os2:329 comp.os.os2.misc:30208 comp.os.os2.apps:6190 comp.os.os2.programmer:4980
  2. Path: sparky!uunet!dtix!darwin.sura.net!gatech!uflorida!cybernet!azzarito
  3. From: azzarito@cse.fau.edu (Doug Azzarito)
  4. Newsgroups: comp.os.os2,comp.os.os2.misc,comp.os.os2.apps,comp.os.os2.programmer
  5. Subject: Re: IRQ's in OS/2
  6. Message-ID: <1992Sep15.205245.15194@cybernet.cse.fau.edu>
  7. Date: 15 Sep 92 20:52:45 GMT
  8. References: <1992Sep13.215737.144359@ua1ix.ua.edu>
  9. Sender: news@cybernet.cse.fau.edu
  10. Organization: Florida Atlantic University, Boca Raton, FL, USA
  11. Lines: 18
  12.  
  13. In article <1992Sep13.215737.144359@ua1ix.ua.edu> totake@ho19.eng.ua.edu (Thomas K. Otake) writes:
  14. >I am trying to set the IRQ's for COM ports in OS/2 applications or the system
  15. >in general but haven't found out how, yet.  Does anybody know how this is
  16. >done?
  17.  
  18. In general, IRQ's are fixed in OS/2.  The exception is COM.SYS.  In your
  19. CONFIG.SYS, you can specify parameters to COM.SYS as follows:
  20.  
  21. DEVICE=\OS2\COM.SYS (p,bbbb,i) (p,bbbb,i)
  22.  
  23.    where p = port number (1 for COM1, 2 for COM2, etc)
  24.          bbbb = base port address (in hex). 03F8 for COM1, 02F8 for COM2, etc.
  25.          i = irq for this port (4 for COM1, 3 for COM2, etc).
  26.  
  27. The only time you have to specify these are if they deviate from standard.
  28. The replacement COM.SYS (available from friendly FTP sites everywhere) has
  29. additional parameters you can set to control buffering and timeouts.  They're
  30. described in the COM package.
  31.