1
0
mirror of https://github.com/UzixLS/picocom.git synced 2025-07-19 07:21:18 +03:00

Revert "added warning if applied baudrate differs from opts.baud on startup"

This reverts commit 15cb659dc3.
This commit is contained in:
Joe Merten
2016-12-07 00:22:49 +01:00
parent a512eb2bf8
commit 59324d71a3

View File

@ -1624,10 +1624,6 @@ main(int argc, char *argv[])
init_history();
#endif
r = term_get_baudrate(tty_fd, NULL);
if ( r != opts.baud )
fd_printf(STO, "WARNING: Desired baudrate is %d but applied baudrate is %d; this might depend upon your OS and/or hardware limitations.\r\n\r\n", opts.baud, r);
#ifndef NO_HELP
fd_printf(STO, "Type [C-%c] [C-%c] to see available commands\r\n\r\n",
KEYC(opts.escape), KEYC(KEY_HELP));