gpt4 book ai didi

c - C语言数据链路层编程

转载 作者:行者123 更新时间:2023-11-30 17:09:56 25 4
gpt4 key购买 nike

我对这件事完全是新手,我想知道从哪里开始..
我有一本指定数据链路层的手册,其中包括用于访问 /dev/ttyUSB0 中连接的设备的命令和响应帧。

给定命令帧的示例是设置波特率

= 0x0A
地址 = NULL/空白
长度 = 0x03
命令 = 0x20
参数 = 0x00
检查 = 抄送

其中参数0x00等于波特率9600bps。

我的问题是如何在编程中使用它?我可以在C语言上使用它吗?
我的操作系统平台是ubuntu 12.04。
任何链接或想法都会有很大帮助。

更新这是我在 read() 中使用的命令

    unsigned char rx_buffer[1024];
size_t RX_buffer_len;
ssize_t bytes_read;
int fd;

RX_buffer_len = sizeof(rx_buffer);
bytes_read = read (serial, rx_buffer, RX_buffer_len);

最佳答案

您可以开始定义数据包消息结构

// Enable 1 byte alignment
#pragma pack(1)

typedef struct
{
uint8_t Head;
uint8_t Address;
uint8_t Length;
uint8_t Command;
uint8_t Parameter;
uint8_t Check;
}typ_packet;

// Restore the original alignment
#pragma pack()

然后就可以访问并配置ttyUSB0了。一个简单的例子:

struct termios2 t;

int serial, baud;

// Open the uart low level device driver and set up all params
serial_fd = open("/dev/ttyUSB0", O_NOCTTY | O_NDELAY);

if (serial != -1)
{
baud = 9600;

if (ioctl(serial, TCGETS2, &t))
{
// Fails to read tty pars
exit(1);
}

t.c_cflag &= ~CBAUD;
t.c_cflag |= BOTHER;
t.c_cflag |= CSTOPB;
t.c_ospeed = baud;

// Noncanonical mode, disable signals, extended
// input processing, and echoing
t.c_lflag &= ~(ICANON | ISIG | IEXTEN | ECHO);

// Disable special handling of CR, NL, and BREAK.
// No 8th-bit stripping or parity error handling.
// Disable START/STOP output flow control.
t.c_iflag &= ~(BRKINT | ICRNL | IGNBRK | IGNCR | INLCR |
INPCK | ISTRIP | IXON | PARMRK);

// Disable all output processing
t.c_oflag &= ~OPOST;

if (ioctl(serial, TCSETS2, &t))
{
// Failed to set serial parameters
exit(1);
}
}
else
{
// Failed to open ttyUSB0
exit(1);
}

然后你可以简单地从串行线读取

res = read (serial_fd, rx_buffer, RX_buffer_len);

并使用

编写
typ_packet packet;

packet.Head = 0x0A;
packet.Address = 0x00;
packet.Length = 0x03;
packet.Command = 0x20;
packet.Parameter = 0x00;
packet.Check = 0xCC;

write(serial_fd, &packet, 6);

关于c - C语言数据链路层编程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33073506/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com