summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--serial.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/serial.c b/serial.c
index 49484f5..1b394cd 100644
--- a/serial.c
+++ b/serial.c
@@ -39,7 +39,7 @@
#include "flash.h"
#include "programmer.h"
-fdtype sp_fd;
+fdtype sp_fd = SER_INV_FD;
void __attribute__((noreturn)) sp_die(char *msg)
{
@@ -189,7 +189,7 @@ fdtype sp_openserport(char *dev, unsigned int baud)
goto out_close;
}
const struct baudentry *entry = round_baud(baud);
- dcb.BaudRate = entry->baud;
+ dcb.BaudRate = entry->flag;
dcb.ByteSize = 8;
dcb.Parity = NOPARITY;
dcb.StopBits = ONESTOPBIT;
OpenPOWER on IntegriCloud