[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [MiNT] slattach



hmmm I begin to like this ;) I've found the reason why >19200 Bds doesn't 
work -- there was some code commented out, here's patch which enables it 
again.

-- 
MiKRO / Mystic Bytes
http://mikro.atari.org
--- slattach.c~	2007-06-25 23:24:50.000000000 +0200
+++ slattach.c	2007-06-25 23:24:50.000000000 +0200
@@ -290,12 +290,10 @@
 	}
 
 	/*
-	 * Is this really needed?
-	 */
-#if 0
-	/*
 	 * Changing baud using Rsconf() and Bconmap(); required with
 	 * HSmodem with speeds above 19200 !!!
+	 * note: not only with hsmodem but with freemint's serial
+	 * drivers as well.
 	 */
 	{
 		struct stat st;
@@ -318,7 +316,6 @@
 				Bconmap (save);
 		}
 	}
-#endif
 
 	return 0;
 }