[해결] 시리얼 통신 코드 질문요..;;

pronet11의 이미지

보드랑 걍 시리얼 양방향 통신을 할려고 하는데요.
보드에 초기 화면은 읽어 와서 로그인 할려는데 입력이 안되네요..;;

걍 putty 로 하니까 송신은 되던데..

login :

다음에 root 엔터 하면 입력 되게 어케 하면 될까요?ㅎㅎ

도움좀 부탁 드립니다.

이 코드는 걍 떠도는거 수정 한 것입니다~

#include <termios.h>
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/signal.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/ioctl.h>
#include <sys/poll.h>
 
//#define BAUDRATE B9600
//#define MODEMDEVICE "/dev/ttySNX0"
#define ENDMINITERM 2 
 
#define _POSIX_SOURCE 1 
 
#define FALSE 0
#define TRUE 1
 
volatile int STOP=FALSE; 
 
void child_handler(int s)
{
   STOP=TRUE;
}
 
int open_serial(char *dev_name, int baud)
{
	int fd;
	fd = open(dev_name, O_RDWR | O_NOCTTY);
	if(fd < 0)
	{
		printf("Device open fail\n");
		return -1;
	}
	return fd;
}
 
int main( int arg, char **argv)
//int main (int arg)
{
	int fd, c, baud, res1, res2;
	char dev_name[256];
	struct termios oldtio,newtio,oldstdtio,newstdtio;
	struct sigaction sa;
 
	char buf1[255], buf2[255];	
 
 
	strcpy(dev_name, argv[1]);
//	strcpy(dev_name, argv);
	baud = strtoul(argv[2], NULL, 10); 
//	baud = 115200;
 
	fd = open_serial(dev_name, baud);
 
	 if (fd <0)
	 {
		exit(-1);
 	 }
 
	 tcgetattr(fd,&oldtio);  
 
 
	 newtio.c_cflag = CRTSCTS | CS8 | CLOCAL | CREAD | B115200;
 
 
	 newtio.c_iflag = IGNPAR | ICRNL;
 
 
	 newtio.c_oflag = 0;
 
 
	 newtio.c_lflag = 0;
 
 
	 newtio.c_cc[VMIN]=1;
	 newtio.c_cc[VTIME]=0;
 
 
	 tcflush(fd, TCIFLUSH);
	 tcsetattr(fd,TCSANOW,&newtio);
 
 
//	 tcsetattr(1,TCSANOW,&newtio);
 
 
	 tcgetattr(0,&oldstdtio);
	 tcgetattr(0,&newstdtio); 
	 newstdtio.c_lflag &= ~(ICANON | ECHO);
	 tcsetattr(0,TCSANOW,&newstdtio);
 
 
	 switch (fork())
	 {
		  case 0: 
 
		   close(1); 
		   for (c=getchar(); c!= ENDMINITERM ; c=getchar())
 
 
 
//			res2 = write(fd,buf2,1);
//			printf("%s",res2);
//
 
 
		   write(fd,&c,1);
 
		   tcsetattr(fd,TCSANOW,&oldtio); 
		   tcsetattr(0,TCSANOW,&oldstdtio); 
		   close(fd);
		   exit(-1);
 
		  case -1:
		   perror("fork");
		   tcsetattr(fd,TCSANOW,&oldtio);
		   close(fd);
		   exit(-1);
 
		  default: 
		   close(0);
		//   sa.sa_handler = child_handler;
		 //  sa.sa_flags = 0;
		 //  sigaction(SIGCHLD,&sa,NULL); 
 
		  while (STOP==FALSE) 
		   {
			  res1 =  read(fd,buf1,255);
			buf1[res1] = 0;
			    printf("%s", buf1);
			   // write(1,&c,1);
				write(0,buf1,1);
		   }
		   wait(NULL);
		   break;
	 }
}
pronet11의 이미지

CRTSCTS 

이거 지우고 하니까 되네요.. 흐름제어 땜시...몇일을 고생 했는지..;;;

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.