Serial Port speed

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • hpeter
    Junior Member
    • Oct 2014
    • 18

    #1

    Serial Port speed

    Hello,

    Our company's products is associate with serial port ic. Could you append more baudrate option for us to do test ? In linux kernel define this:

    Code:
    static const struct baud_rates baud_rates[] = {
        { 921600, B921600 },
        { 460800, B460800 },
        { 230400, B230400 },
        { 115200, B115200 },
        {  57600, B57600  },
        {  38400, B38400  },
        {  19200, B19200  },
        {   9600, B9600   },
        {   4800, B4800   },
        {   2400, B2400   },
        {   1200, B1200   },
        {      0, B38400  }
    };
    Could you append B460800 & B921600??

    Thanks a lot
  • Tim (PassMark)
    Senior Member
    • Mar 2005
    • 1723

    #2
    We looked into this today and while these speeds won't necessarily work on all serial hardware (we tested a USB-serial adapter and a normal serial port and only the USB-serial device worked with these settings) we'll add these two speeds for the next public release.

    Comment

    • hpeter
      Junior Member
      • Oct 2014
      • 18

      #3
      Originally posted by Tim (PassMark)
      We looked into this today and while these speeds won't necessarily work on all serial hardware (we tested a USB-serial adapter and a normal serial port and only the USB-serial device worked with these settings) we'll add these two speeds for the next public release.
      Hello, The newest BurnInTest is include 921600bps for serial port test. It's worked well in GUI mode, but Command Line Mode still highest with 230400. Could you append 921600 to CLI mode ? Thanks

      Comment

      • Tim (PassMark)
        Senior Member
        • Mar 2005
        • 1723

        #4
        We'll make sure these speeds have been enabled int the command line version the next release.

        Comment

        Working...