Appendix
IBR210 User’s Manual
37
F.
RS-232 Test
//open ttymxc1
fd = open(/dev/ttymxc1,O_RDWR );
//set speed
tcgetattr(fd, &opt);
cfsetispeed(&opt, speed);
cfsetospeed(&opt, speed);
tcsetattr(fd, TCSANOW, &opt)
//get_speed
tcgetattr(fd, &opt);
speed = cfgetispeed(&opt);
//set_parity
// options.c_cflag
options.c_cflag &= ~CSIZE;
options.c_cflag &= ~CSIZE;
options.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG); /*Input*/
options.c_oflag &= ~OPOST; /*Output*/
//options.c_cc
options.c_cc[VTIME] = 150;
options.c_cc[VMIN] = 0;
#set parity
tcsetattr(fd, TCSANOW, &options)
//write ttymxc1
write(fd, write_buf, sizeof(write_buf));
//read ttymxc1
read(fd, read_buf, sizeof(read_buf)))
Summary of Contents for iBASE IBR210
Page 1: ......
Page 10: ...viii IBR210 User s Manual This page is intentionally left blank...
Page 17: ...General Information IBR210 User s Manual 7 1 1 6 Dimensions Unit mm...
Page 18: ...8 IBR210 User s Manual IBR210 Reference Heat Sink...
Page 22: ...12 IBR210 User s Manual 2 3 Jumper Connector Locations on IBR210 Board diagram of IBR210...
Page 36: ...26 IBR210 User s Manual This page was intentionally left blank...
Page 42: ...32 Appendix This section provides the information of reference code...