우선 소스부터요.....Qt를 이용한 시리얼 통신 프로그램인데요..
프로그램이라고 할수도 없지만....^^;
====================송신 프로그램====================
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <termios.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#define BAUDRATE B115200
#define MODEMDEVICE "/dev/ttyS0"
#define _POSIX_SOURCE 1
#define FALSE 0
#define TRUE 1
volatile int STOP=FALSE;
main()
{
int fd, res;
struct termios oldtio, newtio;