[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: MCL as a terminal program?
- To: info-mcl@cambridge.apple.com, joswig@informatik.uni-hamburg.de
- Subject: Re: MCL as a terminal program?
- From: language@skdad.usask.ca
- Date: Fri, 23 Oct 92 11:45:22 -0600
I'm also interested in the idea of MCL as a terminal program. if
you're interested I have already built a simple modem-based
answering machine in MCL. for starters, here's two methods
I added to the file serial-streams.lisp:
(defmethod SerAssertDTR ((s serial-stream))
(driver-control s 17))
(defmethod SerNegateDTR ((s serial-stream))
(driver-control s 18))
these are useful for modems that hang up using dtr.
-john