직렬 포트를 읽고 쓰는 것에 대해 약간 혼란 스럽습니다. Linux에는 FTDI USB 직렬 장치 변환기 드라이버를 사용하는 USB 장치가 있습니다. 플러그인하면 / dev / ttyUSB1이 생성됩니다.
나는 C에서 열고 쓰는 것이 간단하다고 생각했습니다. 보드 속도와 패리티 정보를 알고 있지만 이것에 대한 표준이없는 것 같습니다.
뭔가 빠졌습니까, 아니면 누군가 올바른 방향으로 나를 가리킬 수 있습니까?
ioctl
과 fcntl
.
직렬 포트를 읽고 쓰는 것에 대해 약간 혼란 스럽습니다. Linux에는 FTDI USB 직렬 장치 변환기 드라이버를 사용하는 USB 장치가 있습니다. 플러그인하면 / dev / ttyUSB1이 생성됩니다.
나는 C에서 열고 쓰는 것이 간단하다고 생각했습니다. 보드 속도와 패리티 정보를 알고 있지만 이것에 대한 표준이없는 것 같습니다.
뭔가 빠졌습니까, 아니면 누군가 올바른 방향으로 나를 가리킬 수 있습니까?
ioctl
과 fcntl
.
답변:
나는 이것을 1985-1992 년부터 몇 년 동안 약간 수정 하여 썼으며 각 프로젝트에 필요한 비트를 복사하여 붙여 넣습니다.
cfmakeraw
에서 tty
얻은 제품을 호출해야합니다 tcgetattr
. 당신은하지 제로 아웃 할 수있는 struct termios
, 구성이 다음을 설정 tty
하여 tcsetattr
. zero-out 방법을 사용하는 경우, 특히 BSD 및 OS X에서 설명 할 수없는 간헐적 오류가 발생 read(3)
합니다.
#include <errno.h>
#include <fcntl.h>
#include <string.h>
#include <termios.h>
#include <unistd.h>
int
set_interface_attribs (int fd, int speed, int parity)
{
struct termios tty;
if (tcgetattr (fd, &tty) != 0)
{
error_message ("error %d from tcgetattr", errno);
return -1;
}
cfsetospeed (&tty, speed);
cfsetispeed (&tty, speed);
tty.c_cflag = (tty.c_cflag & ~CSIZE) | CS8; // 8-bit chars
// disable IGNBRK for mismatched speed tests; otherwise receive break
// as \000 chars
tty.c_iflag &= ~IGNBRK; // disable break processing
tty.c_lflag = 0; // no signaling chars, no echo,
// no canonical processing
tty.c_oflag = 0; // no remapping, no delays
tty.c_cc[VMIN] = 0; // read doesn't block
tty.c_cc[VTIME] = 5; // 0.5 seconds read timeout
tty.c_iflag &= ~(IXON | IXOFF | IXANY); // shut off xon/xoff ctrl
tty.c_cflag |= (CLOCAL | CREAD);// ignore modem controls,
// enable reading
tty.c_cflag &= ~(PARENB | PARODD); // shut off parity
tty.c_cflag |= parity;
tty.c_cflag &= ~CSTOPB;
tty.c_cflag &= ~CRTSCTS;
if (tcsetattr (fd, TCSANOW, &tty) != 0)
{
error_message ("error %d from tcsetattr", errno);
return -1;
}
return 0;
}
void
set_blocking (int fd, int should_block)
{
struct termios tty;
memset (&tty, 0, sizeof tty);
if (tcgetattr (fd, &tty) != 0)
{
error_message ("error %d from tggetattr", errno);
return;
}
tty.c_cc[VMIN] = should_block ? 1 : 0;
tty.c_cc[VTIME] = 5; // 0.5 seconds read timeout
if (tcsetattr (fd, TCSANOW, &tty) != 0)
error_message ("error %d setting term attributes", errno);
}
...
char *portname = "/dev/ttyUSB1"
...
int fd = open (portname, O_RDWR | O_NOCTTY | O_SYNC);
if (fd < 0)
{
error_message ("error %d opening %s: %s", errno, portname, strerror (errno));
return;
}
set_interface_attribs (fd, B115200, 0); // set speed to 115,200 bps, 8n1 (no parity)
set_blocking (fd, 0); // set no blocking
write (fd, "hello!\n", 7); // send 7 character greeting
usleep ((7 + 25) * 100); // sleep enough to transmit the 7 plus
// receive 25: approx 100 uS per char transmit
char buf [100];
int n = read (fd, buf, sizeof buf); // read up to 100 characters if ready to read
속도의 값은 B115200
, B230400
, B9600
, B19200
, B38400
, B57600
, B1200
, B2400
, B4800
, 등의 패리티의 값이된다 0
(패리티를 의미 없음) PARENB|PARODD
(패리티를 사용하고 홀수의 사용) PARENB
(패리티를 사용에도 사용) PARENB|PARODD|CMSPAR
(마크 패리티) 및 PARENB|CMSPAR
( 공간 패리티).
"차단" read()
은 포트의 a 가 지정된 문자 수가 도착할 때까지 대기 할지 여부를 설정합니다 . 차단을 설정 하지 않으면read()
리턴은 버퍼 한계까지 더 이상 기다리지 않고 많은 문자를 사용할 수 있음을 의미합니다 .
추가:
CMSPAR
마크와 공간 패리티를 선택할 때만 필요합니다. 대부분의 응용 프로그램에서는 생략 할 수 있습니다. 내 헤더 파일 /usr/include/bits/termios.h
은 CMSPAR
전 처리기 기호 __USE_MISC
가 정의 된 경우에만 정의를 가능하게합니다 . 그 정의는 (발생 features.h
)과
#if defined _BSD_SOURCE || defined _SVID_SOURCE
#define __USE_MISC 1
#endif
에 대한 소개 의견 <features.h>
은 다음과 같습니다.
/* These are defined by the user (or the compiler)
to specify the desired environment:
...
_BSD_SOURCE ISO C, POSIX, and 4.3BSD things.
_SVID_SOURCE ISO C, POSIX, and SVID things.
...
*/
lsusb
을 사용하여 모든 USB 장치를 봅니다. 시스템에 사용자 정의 udev
규칙 이있는 경우 이름이 다르게 지정할 수 있습니다 . /etc/udev/rules.d/
어쩌면 거기에서 찾고있는 포트를 선택할 수 있습니다를 참조하십시오 . 확실하게 포트를 나열한 후 플러그를 뽑아서 차이를 식별 할 수 있습니다.
POSIX 운영 체제 용 터미널 모드
및 직렬 프로그래밍 안내서 설정에 설명 된 POSIX 표준을 준수하는 데모 코드의 경우 다음이 제공됩니다.
본질적으로 다른 답변에서 파생되었지만 부정확하고 오도 된 의견이 수정되었습니다.
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <termios.h>
#include <unistd.h>
int set_interface_attribs(int fd, int speed)
{
struct termios tty;
if (tcgetattr(fd, &tty) < 0) {
printf("Error from tcgetattr: %s\n", strerror(errno));
return -1;
}
cfsetospeed(&tty, (speed_t)speed);
cfsetispeed(&tty, (speed_t)speed);
tty.c_cflag |= (CLOCAL | CREAD); /* ignore modem controls */
tty.c_cflag &= ~CSIZE;
tty.c_cflag |= CS8; /* 8-bit characters */
tty.c_cflag &= ~PARENB; /* no parity bit */
tty.c_cflag &= ~CSTOPB; /* only need 1 stop bit */
tty.c_cflag &= ~CRTSCTS; /* no hardware flowcontrol */
/* setup for non-canonical mode */
tty.c_iflag &= ~(IGNBRK | BRKINT | PARMRK | ISTRIP | INLCR | IGNCR | ICRNL | IXON);
tty.c_lflag &= ~(ECHO | ECHONL | ICANON | ISIG | IEXTEN);
tty.c_oflag &= ~OPOST;
/* fetch bytes as they become available */
tty.c_cc[VMIN] = 1;
tty.c_cc[VTIME] = 1;
if (tcsetattr(fd, TCSANOW, &tty) != 0) {
printf("Error from tcsetattr: %s\n", strerror(errno));
return -1;
}
return 0;
}
void set_mincount(int fd, int mcount)
{
struct termios tty;
if (tcgetattr(fd, &tty) < 0) {
printf("Error tcgetattr: %s\n", strerror(errno));
return;
}
tty.c_cc[VMIN] = mcount ? 1 : 0;
tty.c_cc[VTIME] = 5; /* half second timer */
if (tcsetattr(fd, TCSANOW, &tty) < 0)
printf("Error tcsetattr: %s\n", strerror(errno));
}
int main()
{
char *portname = "/dev/ttyUSB0";
int fd;
int wlen;
fd = open(portname, O_RDWR | O_NOCTTY | O_SYNC);
if (fd < 0) {
printf("Error opening %s: %s\n", portname, strerror(errno));
return -1;
}
/*baudrate 115200, 8 bits, no parity, 1 stop bit */
set_interface_attribs(fd, B115200);
//set_mincount(fd, 0); /* set to pure timed read */
/* simple output */
wlen = write(fd, "Hello!\n", 7);
if (wlen != 7) {
printf("Error from write: %d, %d\n", wlen, errno);
}
tcdrain(fd); /* delay for output */
/* simple noncanonical input */
do {
unsigned char buf[80];
int rdlen;
rdlen = read(fd, buf, sizeof(buf) - 1);
if (rdlen > 0) {
#ifdef DISPLAY_STRING
buf[rdlen] = 0;
printf("Read %d: \"%s\"\n", rdlen, buf);
#else /* display hex */
unsigned char *p;
printf("Read %d:", rdlen);
for (p = buf; rdlen-- > 0; p++)
printf(" 0x%x", *p);
printf("\n");
#endif
} else if (rdlen < 0) {
printf("Error from read: %d: %s\n", rdlen, strerror(errno));
} else { /* rdlen == 0 */
printf("Timeout from read\n");
}
/* repeat read to get full message */
} while (1);
}
프로그램이 수신 된 데이터를 ASCII 코드로 취급하도록하려면 DISPLAY_STRING 기호로 프로그램을 컴파일하십시오.
cc -DDISPLAY_STRING demo.c
수신 된 데이터가 2 진 데이터가 아닌 ASCII 텍스트이고 개행 문자로 끝나는 행으로 읽으려면 샘플 프로그램에 대한 이 답변 을 참조하십시오 .
cfmakeraw
있습니까?
O_NDELAY
또는로 포트를 엽니 다 O_NONBLOCK
. cmrr.umn.edu/~strupp/serial.html는 당신이 그 플래그와 함께 파일 기술자를 열 경우, 다음이 있음을 언급 VTIME
무시됩니다. 그렇다면 O_NONBLOCK
파일 디스크립터로 실행하는 것과 파일 디스크립터로 실행하는 것의 차이점은 무엇 VTIME
입니까?