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

Fixed mis-typed constant for 4000000 bps baudrate

This commit is contained in:
Nick Patavalis
2015-08-13 19:39:25 +03:00
parent 2bd93196d3
commit 801003c90e

2
term.c
View File

@ -192,7 +192,7 @@ struct baud_codes {
{ 3500000, B3500000 },
#endif
#ifdef B4000000
{ 4000000, 4000000 },
{ 4000000, B4000000 },
#endif
#endif /* of HIGH_BAUD */
};