linux can 通信程序,Linux CAN通信

这篇博客详细介绍了如何在Linux环境下实现CAN通信,包括初始化、发送和接收功能。通过使用队列、线程以及select函数,实现了CAN接口的读写操作,并提供了相关代码示例。
摘要由CSDN通过智能技术生成

Linux CAN通信

实现了Linux下的CAN通信——初始化,发两个送和接收(采用队列形式),使用两个线程,还有一个超时响应目前未写。接收部分使用select实现。

#ifndef _CAN_H_

#define _CAN_H_

#include

#include

#include

#include

#include

#include

#include

#include

#include

#include

#include

#include

#include

#include

#include

#include "can_queue.h"

#include "type.h"

#ifndef AF_CAN

#define AF_CAN 29

#endif

#ifndef PF_CAN

#define PF_CAN AF_CAN

#endif

typedef enum

{

CAN_PORT_0 = 0, // can0

CAN_PORT_1, // can1

}can_port_t ;

typedef struct

{

char *name;

int fd;

fd_set fdsr;

pthread_t send_thread;

pthread_t recv_thread;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值