Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP
Posting-Version: version B 2.10 UW 5/3/83; site uw-beaver
Path: utzoo!watmath!clyde!burl!ulysses!mhuxl!ihnp4!houxm!houxz!vax135!cornell!uw-beaver!info-mac
From: info-mac@uw-beaver (info-mac)
Newsgroups: fa.info-mac
Subject: Using macput at 1200 baud.
Message-ID: <1415@uw-beaver>
Date: Mon, 6-Aug-84 20:45:56 EDT
Article-I.D.: uw-beaver>.1415
Posted: Mon Aug  6 20:45:56 1984
Date-Received: Wed, 8-Aug-84 19:09:54 EDT
Sender: daemon@uw-beave
Organization: U of Washington Computer Science
Lines: 17

From PATTERMANN@SUMEX-AIM.ARPA  Mon Aug  6 17:45:23 1984
Has anybody besides me had trouble using macput at 1200 baud, with the new 
beta version of MacTerm?  While it worked fine at 9600 baud, it would hang 
for ten seconds and then bring up a "GetBlock..." error when trying to 
download at 1200 baud.

I finally put a RS232 data monitor on the line, and discovered the mac was
apparently dropping a character out of file information block.  Fortunatly
the fix was simple, just add a sleep before the info block is sent:

	if (send_sync() == ACK) {    /* ~ line 165 */
		txtmode = 0;
		sleep(1);  /* added to make sure info block is recieved */
		send_file(files.f_info, 1);

After adding the sleep call there's been no further problems.  
-------