Browse Source

fpgautils: add support for 57.6 kBd serial

Zefir Kurtisi 13 years ago
parent
commit
e8fb2bc1ba
1 changed files with 4 additions and 0 deletions
  1. 4 0
      fpgautils.c

+ 4 - 0
fpgautils.c

@@ -211,6 +211,10 @@ serial_open(const char*devpath, unsigned long baud, signed short timeout, bool p
 	switch (baud) {
 	switch (baud) {
 	case 0:
 	case 0:
 		break;
 		break;
+	case 57600:
+		cfsetispeed( &my_termios, B57600 );
+		cfsetospeed( &my_termios, B57600 );
+		break;
 	case 115200:
 	case 115200:
 		cfsetispeed( &my_termios, B115200 );
 		cfsetispeed( &my_termios, B115200 );
 		cfsetospeed( &my_termios, B115200 );
 		cfsetospeed( &my_termios, B115200 );