💾 Archived View for spam.works › mirrors › textfiles › computers › 450baud.txt captured on 2023-06-14 at 15:58:23.
-=-=-=-=-=-=-
<<<<< On The Topic of 450 Baud! >>>>> by Scott Loftesness May 28, 1983 Many users have asked about using 450 baud with this RBBS system. Typically, they are asking why such an option exists (the N option on the main RBBS menu) when their modem and IBM-PC BASIC don't appear to support such a speed. They are correct about IBM-PC BASIC not supporting 450 baud. In fact, the ROM BIOS routines in the PC don't support 450 baud as an option either. It's not that IBM or Microsoft skipped the speed when they developed the PC, but the fact that 450 baud is not a standard communications speed for the RS-232-C interface. The next higher 'standard' speed above 300 baud is 600 baud, followed by 1200 baud, etc. As a result, 450 baud is not supported on most personal computer systems. As it turns out, however, most 300 baud modems will run at somewhat higher speeds - up to, guess what!, 450 baud in most cases. Although a somewhat higher error rate can be expected when you "push" a 300 baud modem to 450 baud, the error rate is typically still low enough to not be any kind of serious problem to file transfer and message passing operations. In fact, using the XMODEM file transfer protocol, errors which do occur are normally detected by the check sum error detection scheme used by XMODEM and simply force a re-transmission of the block originally received in error. Since the speed advantage of 450 over 300 baud can be substantial, and since we are all interested in doing the most work in the least amount of time with the equipment at hand, many users have implemented 450 baud as an option which can used with their "home-grown" communications programs. (Note that standard IBM-PC communications packages don't support 450 baud either - such as PC-Talk III). I'll describe how 450 baud can be implemented from a programming standpoint shortly. But first, let's get rid of a few erroneous impressions about modem operation. Your Hayes 300 baud SmartModem (or a Hayes 1200 running in 300 baud mode) is capable of receiving modem commands and data at up to 1200 baud. What this means is that the microprocessor in the Hayes is programmed to automatically look for the AT command sequence - and performs automatic baud rate detection at the speed you happen to be sending the command sequence to the modem. This capability, for example, is used in the RBBS code to send the various modem commands at 1200 baud - to minimize the time spent sending them! Your Hayes 300 will even try to send data across the line at 1200 baud - if you open your communications line at that speed and attempt to go to data mode. However, the 300 is not capable of handling data at that speed - in fact, it can only transmit and receive data at up to slightly more than 450 baud - with any reasonable error rate. Since the Hayes doesn't care at what rate is receives data (anything from 1 to 1200 baud is acceptable), it is possible to transmit data to the modem and have the modem transmit it to the phone line at any of those speeds. However, 450 baud is the reasonable upper limit for data communications with the Hayes 300. Now that we understand the workings of the Hayes modem, let's talk about how we can get the PC to send data from its RS-232-C Asynchronous Communications Adapter at 450 baud. As mentioned earlier, 450 is not an acceptable option to either the BASIC OPEN statement or to the direct BIOS calls for asychronous communications. However, as always, almost