Последовательное соединение между Raspberry Pi 3 и XBee S2C через USB-ключ SparkFun XBee USB
Как мы можем включить последовательную связь между XBee S2C и Raspi 3 через порт USB?
Для этой цели я использую защитный ключ Sparkfun XBee. У меня есть несколько таких комбинаций для создания сети ZigBee и тестирования протокола, написанного на C. Однако у меня возникают проблемы при чтении из /dev/ttyUSB0
, Кстати, проблема может быть на стороне отправителя.
XBees работают с последовательной конфигурацией интерфейса, указанной ниже:
115200 baudrate
No parity
1 stop bit
3 character times for packetization timeout
CTS flow control is enabled
RTS flow control is disabled
API mode is enabled
API output mode is native
Поэтому я инициализировал порт в своем коде, как указано ниже:
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...'textB' un
cfsetispeed(&options, B115200);
cfsetospeed(&options, B115200);
// Enable the receiver and setSTX local mode...
options.c_cflag |= (CLOCAL | CREAD);
//options.c_cflag &= ~PARENB;
//options.c_cflag &= ~CSTOPB; //When these are disabled the XBee receives data.
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] = 200; //min carachters to be read
options.c_cc[VTIME] = 5; //Time to wait for data (tenths of seconds)
// 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;
}
Я хотел задать этот вопрос здесь, потому что я считаю, что мне нужно внести некоторые изменения в некоторые файлы, такие как /boot/config.txt
и / или /boot/cmdline.txt
, В моем поиске в сети появились подобные модификации, но в моем случае они не работали.
Наконец, Raspis работает с последней версией Raspbian Jessie и Linux kernel 4.9.35-v7+.
$uname -a
Linux raspberrypi 4.9.35-v7+ #1014 SMP Fri Jun 30 14:47:43 BST 2017 armv7l GNU/Linux
$cat /etc/os-release
PRETTY_NAME="Raspbian GNU/Linux 8 (jessie)"
NAME="Raspbian GNU/Linux"
VERSION_ID="8"
VERSION="8 (jessie)"
ID=raspbian
ID_LIKE=debian
HOME_URL="http://www.raspbian.org/"
SUPPORT_URL="http://www.raspbian.org/RaspbianForums"
BUG_REPORT_URL="http://www.raspbian.org/RaspbianBugs"
Пожалуйста, не стесняйтесь спрашивать любые другие детали о моей настройке.
Заранее спасибо.