1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-11 15:27:53 +00:00

Merge pull request #275 from zefir-k/master

Add support for 57.6 kBd serial communication (required for Cairnsmore1 FPGA board)
This commit is contained in:
Con Kolivas 2012-07-29 03:48:19 -07:00
commit 1e51e373d8

View File

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