Open serial port in non-blocking mode in case flow control pins are preventing it opening normally.
This commit is contained in:
parent
9a79a80fd8
commit
9413ac1d37
2
Makefile
2
Makefile
@ -16,7 +16,7 @@ $(SRCS):
|
||||
$(CC) $(CFLAGS) -c $*.c
|
||||
|
||||
tcpser: $(OBJS)
|
||||
$(CC) -o $@ $(OBJS) $(LDFLAGS)
|
||||
$(CC) -g -o $@ $(OBJS) $(LDFLAGS)
|
||||
|
||||
depend: $(SRCS)
|
||||
$(DEPEND) $(SRCS)
|
||||
|
@ -87,7 +87,7 @@ int ser_init_conn(char *tty, int speed)
|
||||
/* open the device to be non-blocking (read will return immediatly) */
|
||||
LOG(LOG_INFO, "Opening serial device");
|
||||
|
||||
fd = open(tty, O_RDWR | O_NOCTTY);
|
||||
fd = open(tty, O_RDWR | O_NOCTTY | O_NONBLOCK);
|
||||
|
||||
if (fd < 0) {
|
||||
ELOG(LOG_FATAL, "TTY %s could not be opened", tty);
|
||||
|
Loading…
x
Reference in New Issue
Block a user