Hey Gang,
I have been thinking about an Arduino based Serial to Serial baud rate converter.
The purpose is to take in data at one rate, possibly do something to it, then send it out at another serial rate/configuration.
It could either use some kind of flow control, XON/XOFF or DTR/RTS, etc. Or maybe just buffer some number of characters. In this case, a couple hundred characters should be enough I think.
My basic desire is to be able to hook up my 110 baud teletype to a 300 baud console port. Just about nothing supports 110 any longer and I am not willing to say that my ASR33 shall never be a terminal again.
Have any of you heard of doing anything like this?
Converting the 110 output from the ASR keyboard to 300 should be simple.
Of course, I would have to bit bash the 110 because it has been made abundantly clear to me from many discussions here, that the Arduino will never do 110 on its hardware ports.
I have successfully bit bashed a 110 baud output and I am sure that it won’t be too difficult to do the same with the 110 baud input. I might not be able to do them both at the same time, but there is no problem using 2 Arduinos, one going one way and the other going the other.
Of course, I would probably use MAX232 for TTL to RS232 conversion.
I would be interested in any of your thoughts.
Greg