From: MaartenBrock Date: Tue, 17 Oct 2006 21:12:12 +0000 (+0000) Subject: * support/regression/ports/mcs51/support.c: use highest baudrate so the X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=97bd52d7c425317254b142d5e022a0fa8c7b9fdc;p=fw%2Fsdcc * 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 git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@4415 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/ChangeLog b/ChangeLog index 6d8df6e2..056bbd1d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-10-17 Maarten Brock + + * 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 * device/lib/printf_large.c: slightly smaller diff --git a/support/regression/ports/mcs51/support.c b/support/regression/ports/mcs51/support.c index 47ddf35b..cec67117 100644 --- a/support/regression/ports/mcs51/support.c +++ b/support/regression/ports/mcs51/support.c @@ -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 */