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:
Could you append B460800 & B921600??
Thanks a lot
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 } };
Thanks a lot
Comment