Changeset 4ca0bfc in rtems for c/src


Ignore:
Timestamp:
03/22/11 14:14:24 (13 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.11, 5, master
Children:
8c475a66
Parents:
963d052
Message:

2011-03-22 Joel Sherrill <joel.sherrilL@…>

PR 1772/bsps

  • console/sci.c: Use same default baud rate as monitor.
Location:
c/src/lib/libbsp/m68k/mrm332
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/m68k/mrm332/ChangeLog

    r963d052 r4ca0bfc  
     12011-03-22      Joel Sherrill <joel.sherrilL@OARcorp.com>
     2
     3        PR 1772/bsps
     4        * console/sci.c: Use same default baud rate as monitor.
     5
    162011-02-21      Joel Sherrill <joel.sherrilL@OARcorp.com>
    27
  • c/src/lib/libbsp/m68k/mrm332/console/sci.c

    r963d052 r4ca0bfc  
    557557/*  SciSetBaud( 57600);                         set the baud rate */
    558558/*  SciSetBaud( 38400);                         set the baud rate */
    559     SciSetBaud( 19200);                      /* set the baud rate */
    560 /*  SciSetBaud(  9600);                        set the baud rate */
     559/*  SciSetBaud( 19200);                        set the baud rate */
     560    SciSetBaud(  9600);                      /* set the baud rate */
    561561
    562562    SciSetParity(SCI_PARITY_NONE);              /* set parity to none */
     
    682682    if (!baud_requested)
    683683    {
    684 /*        baud_requested = B9600;                  default to 9600 baud */
    685         baud_requested = B19200;                 /* default to 19200 baud */
     684        baud_requested = B9600;                /* default to 9600 baud */
     685       /* baud_requested = B19200;                default to 19200 baud */
    686686    }
    687687
     
    784784/*  SciSetBaud( 57600);                            set the baud rate */
    785785/*  SciSetBaud( 38400);                            set the baud rate */
    786   SciSetBaud( 19200);                         /* set the baud rate */
    787 /*  SciSetBaud(  9600);                            set the baud rate */
     786/*  SciSetBaud( 19200);                          * set the baud rate */
     787    SciSetBaud(  9600);                         /* set the baud rate */
    788788
    789789    SciSetParity(SCI_PARITY_NONE);              /* set no parity */
Note: See TracChangeset for help on using the changeset viewer.