select in 'get_byte_to' don't work
This commit is contained in:
parent
4eed817ecb
commit
560edb14e8
@ -86,7 +86,7 @@ if (uart0 < 0)
|
|||||||
|
|
||||||
|
|
||||||
baudbits = baudrate2const(baudrate);
|
baudbits = baudrate2const(baudrate);
|
||||||
#if DEBUG_LEVEL
|
#if DEBUG_LEVEL > 1
|
||||||
fprintf(stderr, "%d -> 0x%04x\n", baudrate, baudbits);
|
fprintf(stderr, "%d -> 0x%04x\n", baudrate, baudbits);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -97,6 +97,9 @@ options.c_cflag = baudbits | CS8 | CLOCAL | CREAD;
|
|||||||
options.c_iflag = IGNPAR;
|
options.c_iflag = IGNPAR;
|
||||||
options.c_oflag = 0;
|
options.c_oflag = 0;
|
||||||
options.c_lflag = 0;
|
options.c_lflag = 0;
|
||||||
|
|
||||||
|
options.c_cc[VMIN] = 1; /* ask for blocking read */
|
||||||
|
|
||||||
tcflush(uart0, TCIFLUSH);
|
tcflush(uart0, TCIFLUSH);
|
||||||
tcsetattr(uart0, TCSANOW, &options);
|
tcsetattr(uart0, TCSANOW, &options);
|
||||||
|
|
||||||
@ -133,9 +136,9 @@ struct timeval timeout;
|
|||||||
fd_set rfds;
|
fd_set rfds;
|
||||||
int retval;
|
int retval;
|
||||||
|
|
||||||
timeout.tv_sec = to_ms / 1000;
|
timeout.tv_sec = to_ms / 1000;
|
||||||
timeout.tv_usec = (to_ms % 1000) * 1000;
|
timeout.tv_usec = (to_ms % 1000) * 1000;
|
||||||
#if DEBUG_LEVEL
|
#if DEBUG_LEVEL > 1
|
||||||
fprintf(stderr, "timeout %6d is %4ld.%6ld\n", to_ms,
|
fprintf(stderr, "timeout %6d is %4ld.%6ld\n", to_ms,
|
||||||
timeout.tv_sec, timeout.tv_usec);
|
timeout.tv_sec, timeout.tv_usec);
|
||||||
#endif
|
#endif
|
||||||
@ -145,7 +148,7 @@ FD_SET (fd, &rfds);
|
|||||||
|
|
||||||
retval = select(1, &rfds, NULL, NULL, &timeout);
|
retval = select(1, &rfds, NULL, NULL, &timeout);
|
||||||
#if DEBUG_LEVEL
|
#if DEBUG_LEVEL
|
||||||
fprintf(stderr, "%s : select -> %d\n", __func__, retval);
|
fprintf(stderr, "%s : select on %d -> %d\n", __func__, fd, retval);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
switch (retval) {
|
switch (retval) {
|
||||||
@ -156,7 +159,8 @@ switch (retval) {
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 0:
|
case 0:
|
||||||
fprintf(stderr, "timeout\n");
|
fprintf(stderr, "timeout %ld.%ld\n",
|
||||||
|
timeout.tv_sec, timeout.tv_usec);
|
||||||
retval = -99;
|
retval = -99;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
51
serial/t.c
51
serial/t.c
@ -1,4 +1,7 @@
|
|||||||
|
/*
|
||||||
|
* Experiments with the serial input
|
||||||
|
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
@ -14,63 +17,35 @@
|
|||||||
|
|
||||||
int verbosity;
|
int verbosity;
|
||||||
|
|
||||||
/* ----------------------------------------------------- */
|
/* ---------------------------------------------------------------- */
|
||||||
int openserial(char *dev)
|
|
||||||
{
|
|
||||||
int uart;
|
|
||||||
|
|
||||||
fprintf(stderr, "%s ( %s )\n", __func__, dev);
|
|
||||||
uart = open(dev, O_RDONLY | O_NOCTTY);
|
|
||||||
if (uart < 0)
|
|
||||||
{
|
|
||||||
perror("unable to open uart");
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
return uart;
|
|
||||||
}
|
|
||||||
/* ----------------------------------------------------- */
|
|
||||||
int configserial(int fd)
|
|
||||||
{
|
|
||||||
struct termios tios;
|
|
||||||
bzero(&tios, sizeof(tios));
|
|
||||||
tios.c_cflag = B9600 | CRTSCTS | CS8 | CLOCAL | CREAD;
|
|
||||||
tios.c_lflag = ICANON;
|
|
||||||
tios.c_cc[VMIN] = 1; /* read bloquant ??? */
|
|
||||||
tcsetattr(fd,TCSANOW,&tios);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
/* ----------------------------------------------------- */
|
|
||||||
int main (int argc, char *argv[])
|
int main (int argc, char *argv[])
|
||||||
{
|
{
|
||||||
int serial_in, foo;
|
int serial_in, foo;
|
||||||
unsigned char byte;
|
|
||||||
|
|
||||||
if (2 != argc) {
|
if (2 != argc) {
|
||||||
fprintf(stderr, "give me a device name, please.\n");
|
fprintf(stderr, "give me a device name, please.\n");
|
||||||
return 2;
|
return 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
serial_in = openserial(argv[1]);
|
serial_in = prepare_UART(argv[1], 9600);
|
||||||
fprintf(stderr, "openserial -> %d\n", serial_in);
|
|
||||||
|
|
||||||
(void)configserial(serial_in);
|
|
||||||
|
|
||||||
|
fprintf(stderr, "going to listen on %d\n", serial_in);
|
||||||
|
|
||||||
for (;;) {
|
for (;;) {
|
||||||
foo = read(serial_in, &byte, 1);
|
foo = getbyte_to(serial_in, 50000);
|
||||||
if (1 != foo) {
|
if (foo < 0) {
|
||||||
fprintf(stderr, "get byte : got %d, err is %d\n",
|
fprintf(stderr, "get byte : got %d, err is %d\n",
|
||||||
foo, errno);
|
foo, errno);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
printf("%9ld $%02x ", time(NULL), byte);
|
printf("%9ld $%02x ", time(NULL), foo);
|
||||||
if (isprint(byte)) putchar(byte);
|
if (isprint(foo)) putchar(foo);
|
||||||
puts("");
|
puts("");
|
||||||
if ('\n'==byte) puts("");
|
if ('\n'==foo) puts("");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ----------------------------------------------------- */
|
/* ---------------------------------------------------------------- */
|
||||||
|
Loading…
Reference in New Issue
Block a user