[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: MCL as a terminal program?



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