Page 4 of 5

Re: Serial port settings for a real Teletype

PostPosted: August 19th, 2019, 9:44 pm
by kwiebe
Hopefully this is what you had in mind:

Image
Image

Re: Serial port settings for a real Teletype

PostPosted: August 20th, 2019, 3:41 pm
by AltairClone
What happens if you run the program normally and try to punch the phrase "QUICKLY" (or "QUICKLEY") ?

If that works OK, then do the DDT dump with one of the phrases that you typed that lock things up.

Mike

Re: Serial port settings for a real Teletype

PostPosted: August 21st, 2019, 10:21 pm
by kwiebe
So I tried "QQQQQQQ" and they all punched and I was able to hit RETURN for another phrase.

"QUxxx" halts after the "U"

Then I tried "UUUUUU" and I got one "U" then halted.

Re: Serial port settings for a real Teletype

PostPosted: August 22nd, 2019, 10:57 am
by kwiebe
So to be clear, QU + anything locks up after the "U".

Therefore the dump shown above for "QUICKLEY" is an example dump for a "lockup" scenario.

Re: Serial port settings for a real Teletype

PostPosted: August 22nd, 2019, 11:07 am
by AltairClone
The value of each byte of the string looks fine, so it doesn't seem that index out of bounds is the issue. First, I'd re-upload PUNMSG.COM to your disk just in case the program is somehow corrupted. If that doesn't work, stop the machine using the front panel as soon as it hangs. Record the address shown on the front panel and let me know where it's executing.

Mike

Re: Serial port settings for a real Teletype

PostPosted: August 23rd, 2019, 6:57 pm
by kwiebe
Mike,

I re-uploaded PUNMSG.COM and tried again but got same result with the TTY.

So I stopped the program and recorded the LED's. I got 1157 octal. (sorry I'm still learning hardware-related stuff, I guess that's 26F but that still doesn't seem like a memory location so I'm sure I'll learn as the thread goes on)

Edit: Ran it a second time and got 1155.

Sidenote: I noticed during this process that it now takes a couple of attempts to get the Configuration Monitor menu to display. I haven't noticed this before with the clone. Might be nothing but thought I'd check.

I can reproduce it:

Power off
Power on
Hard reset (stop/reset)
Stop/Aux
[no terminal emulator output displayed]
wait a few seconds
Stop/Aux
[menu displays reliably]

So essentially the menu won't display until the 2nd attempt. Even if I wait several seconds after the hard reset before the first Stop/Aux, the menu doesn't come up until the second Stop/Aux.

Have you ever noticed this behavior/anything to be concerned about? (I sincerely hope this isn't in the manual - :-)

Maybe because of my serial port reconfiguring this is a side effect?

Thanks for your support.

Re: Serial port settings for a real Teletype

PostPosted: August 24th, 2019, 8:08 am
by AltairClone
When you’re running PUNMSG, the TTY is the CP/M operator’s console, right? If so, did you boot with the TTY as console or switch consoles with the STAT command?

The configuration monitor behavior you’re seeing is a feature added back in 2015. See the release announcement here: viewtopic.php?f=3&t=153

Doesn’t look like I ever described this updated operation in the manual, so you didn’t miss anything :)

Mike

Re: Serial port settings for a real Teletype

PostPosted: August 24th, 2019, 8:49 am
by AltairClone
kwiebe wrote: I stopped the program and recorded the LED's. I got 1157 octal. (sorry I'm still learning hardware-related stuff, I guess that's 26F but that still doesn't seem like a memory location so I'm sure I'll learn as the thread goes on)

Edit: Ran it a second time and got 1155.


These addresses are both in the loop where the program is waiting for the output port to be ready for the next character. This loop should never completely stall unless the CTS line into the ACIA on the 2SIO board is not asserted. Since the TTY does not drive the RTS/CTS lines on the DB25, CTS into the Altair is floating. Use the configuration monitor to choose “CTS, RTS always asserted” for the console port (serial port 1).

Mike

Re: Serial port settings for a real Teletype

PostPosted: August 24th, 2019, 1:49 pm
by kwiebe
I am booting with the TTY as the console.

Also I ensured CTS/RTS set to be always asserted.

But I still get the hang after "QU".

Re: Serial port settings for a real Teletype

PostPosted: August 24th, 2019, 2:08 pm
by AltairClone
In December of last year, I fixed a bug in the port 6/7 version of the program (PUNMSG6) and then also put that bug fix into the 2SIO version of PUNMSG (the version you are using). It looks like you got stung by my "copy and paste" carelessness. The status register for the SIO at 6/7 uses the opposite bit polarity as the status register of the 2SIO and this is causing the problem you're seeing.

I have "fixed the fix" and the PUNMSG.COM posted here http://altairclone.com/downloads/cpm/CP ... /programs/ should now work. Refresh the download page if the date on PUNMSG is not August 2019 or newer.

Thanks for finding that!

Mike