* support/regression/ports/mcs51/support.c: use highest baudrate so the
authorMaartenBrock <MaartenBrock@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Tue, 17 Oct 2006 21:12:12 +0000 (21:12 +0000)
committerMaartenBrock <MaartenBrock@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Tue, 17 Oct 2006 21:12:12 +0000 (21:12 +0000)
  regression tests are not waiting in the simulator for simulated
  transmission of debug output

git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@4415 4a8a32a2-be11-0410-ad9d-d568d2c75423

ChangeLog
support/regression/ports/mcs51/support.c

index 6d8df6e2b35bd86ce41e4359099dc0d8b2b3ea51..056bbd1df0edc99f8d0eee9a4d8a7d046f799c6b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-10-17 Maarten Brock <sourceforge.brock AT dse.nl>
+
+       * support/regression/ports/mcs51/support.c: use highest baudrate so the
+         regression tests are not waiting in the simulator for simulated
+         transmission of debug output
+
 2006-10-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
 
        * device/lib/printf_large.c: slightly smaller
index 47ddf35bf636c0f83e261bc872a752ca38bb6f31..cec67117f98bf1a1303b9be9f4b78af652b218c6 100644 (file)
@@ -10,7 +10,7 @@ _sdcc_external_startup (void)
   TMOD = 0x21;  /* timer control mode, byte operation */
   TCON = 0;     /* timer control register, byte operation */
 
-  TH1  = 0xFA;  /* serial reload value, 9,600 baud at 11.0952Mhz */
+  TH1  = 0xFF;  /* serial reload value, 57,600 baud at 11.0592 MHz */
   TL1  = 0xFF;  /* reload asap */
   TR1  = 1;     /* start serial timer */