Ticket #27028: patch-picocom.c.diff

File patch-picocom.c.diff, 483 bytes (added by ranauei@…, 14 years ago)

Changed the maximum usable baudrate according to sys/termios.h

  • picocom.c

    old new  
    455455        if ( baud > 115200 )
    456456                baud = 115200;
    457457#else
    458         if ( baud > 921600 )
    459                 baud = 921600;
     458        if ( baud > 230400 )
     459                baud = 230400;
    460460#endif
    461461
    462462        return baud;
     
    469469        if ( baud > 115200 )
    470470                baud = 115200;
    471471#else
    472         if ( baud > 921600 )
    473                 baud = 921600;
     472        if ( baud > 230400 )
     473                baud = 230400;
    474474#endif
    475475        else if ( baud == 57600 )
    476476                baud = 38400;