Newsgroups: comp.speech
Path: pavo.csi.cam.ac.uk!warwick!pipex!uunet!panther!mothost!lmpsbbs!isu6!ronzu
From: ronzu@comm.mot.com (Ron Zuckerman)
Subject: Re: Klatt SYnthesizer (How to work)
Reply-To: ronzu@comm.mot.com
Organization: Motorola
Date: Mon, 11 Jan 1993 12:06:58 GMT
Message-ID: <1993Jan11.120658.6856@lmpsbbs.comm.mot.com>
References: <gordon.726507433@spot.Colorado.EDU>
Sender: news@lmpsbbs.comm.mot.com (Net News)
Nntp-Posting-Host: 145.12.232.8
Lines: 32

In article 726507433@spot.Colorado.EDU, gordon@spot.Colorado.EDU (GORDON ALLEN R) writes:

[Plotting stuff deleted]

>
>Finally, when klatt is exited, I must run stty sane to get the keyboard/monitor
>to respond normally.
>

I had the same problem. What I did was to modify "klatt.c" as follows:

main(argc,argv)
int argc;
char *argv[];  
{
  ...
  do {
    printf("\n\n\n\nYour options are:");
    ...
  } while (choice != 'X');
  system ("stty sane");	<--- line added
}

---
------------------------------------------------------------------
| Ron Zuckerman, KA4RPD  E-mail: ronzu@isu.comm.mot.com          |
| Phone: (708)538-3142   FAX: (708)538-2818                      |
------------------------------------------------------------------
| "A madman got us into this, and it's beginning to look as if   |
|  only a madman can get us out." -- Chekov                      |
------------------------------------------------------------------

