I have connected my XBee module (which is communicating on UART) to my PC. From a distant node I have transmitted data wirelessly to my XBee.
I have a problem receiving bytes on my Linux terminal. Though I am able to transmit data to the distant node. Find my below code which I am writing on my Linux terminal to serial communication. But for debugging I have my XBee configured as loop-back.(TXD-RXD shorted)
#include <stdio.h> /* Standard input/output definitions */
#include <string.h> /* String function definitions */
#include <unistd.h> /* UNIX standard function definitions */
#include <fcntl.h> /* File control definitions */
#include <errno.h> /* Error number definitions */
#include <termios.h> /* POSIX terminal control definitions */
//Initialize serial port
int initport(int fd)
{
int portstatus = 0;
struct termios options;
// Get the current options for the port...
tcgetattr(fd, &options);
// Set the baud rates to 9600...
cfsetispeed(&options, B9600);
cfsetospeed(&options, B9600);
// Enable the receiver and set local mode...
options.c_cflag |= (CLOCAL | CREAD);
options.c_cflag &= ~PARENB;
options.c_cflag &= ~CSTOPB;
options.c_cflag &= ~CSIZE;
options.c_cflag |= CS8;
//options.c_cflag |= SerialDataBitsInterp(8); /* CS8 - Selects 8 data bits */
options.c_cflag &= ~CRTSCTS; // Disable hardware flow control
options.c_iflag &= ~(IXON | IXOFF | IXANY); // Disable XON XOFF (for transmit and receive)
//options.c_cflag |= CRTSCTS; /* Enable hardware flow control */
options.c_cc[VMIN] = 1; //Minimum characters to be read
options.c_cc[VTIME] = 2; //Time to wait for data (tenths of seconds)
options.c_oflag &=~OPOST;
options.c_iflag &=~(ICANON | ECHO | ECHOE | ISIG);
// Set the new options for the port...
tcsetattr(fd, TCSANOW, &options);
//Set the new options for the port...
tcflush(fd, TCIFLUSH);
if (tcsetattr(fd, TCSANOW, &options) == -1)
{
perror("On tcsetattr:");
portstatus = -1;
}
else
portstatus = 1;
return (portstatus);
}
int open_port(void)
{
int fd; /* File descriptor for the port */
fd = open("/dev/ttyUSB1", O_RDWR | O_NOCTTY | O_NONBLOCK);
if (fd == -1)
{
/* Could not open the port. */
perror("Open_port: Unable to open /dev/ttyUSB0 --- \n");
}
else
{message print....};
return (fd);
}
int main(void)
{
int i;
unsigned char write_buf[] =
{0x7E, 0x00, 0x16, 0x10, 0x01, 0x00, 0x13,
0xA2, 0x00, 0x40, 0xE4, 0x22, 0x64, 0xFF,
0xFE, 0x00, 0x00, 0x41, 0x42, 0x43, 0x44,
0x41, 0x42, 0x43, 0x43, 0x7F};
int serial_fd = open_port();
if (serial_fd == -1)
printf("Error opening serial port /dev/ttyUSB0 \n");
else
{
printf("Serial Port /dev/ttyUSB0 is Open\n");
if (initport(serial_fd) == -1)
{
printf("Error Initializing port");
close(serial_fd);
return 0;
}
int n = write(serial_fd, &write_buf, sizeof write_buf);
if (n < 0)
fputs("write() failed!\n", stderr);
else
{
printf("Successfully wrote %d bytes\n", sizeof write_buf);
for (i=0; i<n; i++)
{
printf("%c ",write_buf[i]);
}
}
}
usleep(200000);
char read_buf[128];
int n1 = read(serial_fd, read_buf, sizeof read_buf);
// sleep(1);
if (n1 < 0)
fputs("Read failed!\n", stderr);
else
{
printf("Successfully read from serial port -- %s\n With %d Bytes", read_buf,n1);
}
// sleep(.5);
// usleep(500000);
printf("\n\nNow closing serial port /dev/ttyUSB0 \n\n");
close(serial_fd);
return 0;
}
When I execute this code it does show 1 byte received. I have introduced delay before read().but it is showing on the Tera Term (sort of hyperterminal). Also I have to send/receive Hex strings on Xbee to transmit because they are communicating in API mode.
How can I fix this problem?