Re: [Freedos-devel] beep implementation

2020-05-08 Thread Johnpaul Humphrey
FreeDOS does only hangs for a little bit on the message. My version is "0.84-pre2" the version that ships with the standard USB install. So the problem does not appear to be delay(). Maybe the problem is nosound()? Maybe the keyboard has an error? or the computer itself? I can write a test program

Re: [Freedos-devel] beep implementation

2020-05-08 Thread Eric Auer
Hi! In short, your FreeCOM beeps are infinitely long. As you saym beep_l.c and beep_n.c implements them as beep_low() and beep() as follows: void beep_low(void) { sound(900); delay(200); /* 400 */ nosound(); delay(100); } void beep(void) { sound(900); delay(200); /* 400 */

[Freedos-devel] beep implementation

2020-05-08 Thread Johnpaul Humphrey
Hi Developers, I noticed that when I tab complete in the default shell, (freecom, I think) that it beeps, and is stuck beeping for a long time. I have not been able to see how long till it stops, but if it stops at all, it is much longer than it should be. The only way I have found to stop it is