linux下蓝牙开发(bluez应用)
编译blueZ-5.25
需要先编译安装以下包:
bluez-libs-3.36.tar.gz
expat-2.1.0.tar.gz
dbus-1.10.0.tar.gz
glib-2.26.1.tar.gz
bluez-utils-3.36.tar.gz
libusb-1.0.9.tar.bz2
D-bus1.8.10
glib2.28.6
bluez-libs-3.36
bluez-utils-3.36
bluez-libs-3.36(不需要其他库)
bluez-utils-3.36:
glib-2.16.5
dbus-1.0.2: libxml2-2.7.4
libsndfile-1.0.17
libusb-0.1.12
注:/opt/libs 和/opt/utils是我自己编译时用的路径,你可以随便的选取。
下载地址:
https://download.csdn.net/download/suizhuantoukuai1/10018231
1,编译安装bluez-lib-3.36.tar.gz
这个库不需要什么依赖,直接解压,配置,编译然后安装即可。
#tar zxvf bluez-lib-3.36.tar.gz
#./configure --profix=/opt/libs --host=arm-linux --target=arm-linux CC=arm-linux-gcc
#make
#make install
2,编译安装libxml2-2.7.4.tar.gz
这个库是后面的dbus依赖的,你也可以用expat来代替libxml2,官方网站上说dbus必须依赖于他们中的一个。
#tar zxvf libxml2-2.7.4.tar.gz
#./configure --profix=/opt/libs --host=arm-linux --target=arm-linux CC=arm-linux-gcc
#make
#make install
3,编译安装dbus-1.0.2.tar.gz
#tar zxvf dbus-1.2.16.tar.gz
#echo ac_cv_have_abstract_sockets=yes>arm-linux.cache
#./configure --profix=/opt/libs --host=arm-linux --target=arm-linux CC="arm-linux-gcc -I/opt/libs/include -L/opt/libs/lib" --cache-file=arm-linux.cache --with-x=no
#make
#make install
4,编译安装glib-2.16.5
#tar -zxjf glib-2.16.5.tar.bz2
#echo ac_cv_type_long_long=yes>arm-linux.cache
#echo glib_cv_stack_grows=no>>arm-linux.cache
#echo glib_cv_uscore=no>>arm-linux.cache
#echo c_cv_func_posix_getpwuid_r=yes>>arm-linux.cache
#echo ac_cv_func_posix_getgrgid_r=yes>>arm-linux.cache
注意:">"和">>"的区别
#./configure --profix=/opt/libs --host=arm-linux --target=arm-linux CC="arm-linux-gcc -I/opt/libs/include -L/opt/libs/lib" --cache-file=arm-linux.cache
#make
#make install
5,编译安装libusb-0.1.12.tar.gz
这个库不需要什么依赖,直接解压,配置,编译然后安装即可。
#tar zxvf libusb-0.1.12.tar.gz
#./configure --profix=/opt/libs --host=arm-linux --target=arm-linux CC="arm-linux-gcc -I/opt/libs/include -L/opt/libs/lib"
#make
#make install
6,编译安装bluez-utils-3.36.tar.gz
#tar zxvf bluez-utils-3.36.tar.gz
#./configure --profix=/opt/libs --host=arm-linux --target=arm-linux CC="arm-linux-gcc -I/opt/libs/include -L/opt/libs/lib" --disable-audio
#make
#make install
在配置 ./configure –prefix=/opt/arm/bluez 时 说明库会被安装在/opt/arm/bluez 下
#copy /opt/arm/bluez/sbin/* 到你的文件系统/sbin
cp bluez/sbin/* /sbin/
#copy /opt/arm/bluez/bin/ 下的 hcitool,rfcomm,sdptool 到你的文件系统 /bin
cp bluez/bin/* /bin/
#copy /opt/arm/bluez/lib/* 到文件系统的/lib下
#copy /opt/arm/bluez/etc/bluetooth/* 到你的文件系统 /etc
cp bluez/etc/bluetooth /etc/
移植后,会生成一些工具,涉及的工具:
- hciconfig
- 查看蓝牙设备的属性,设置蓝牙设备的操作
- rfcomm
- 用于创建设备绑定本地的蓝牙设备,/dev/rfcomm0,建立虚拟串口
- sdptool
- 增加/删除蓝牙服务
- pand
- 配置蓝牙
- hcitool
- 用于连接断开设备
- bluetoothd
- 蓝牙设备的守护进程
- hciattach
- 初始化(串口/波特率)和绑定tty设备
测试
hciconfig hci0 up 启用蓝牙
hciconfig hci0 iscan配置开发板蓝牙可被查找
hcitool scan 查找蓝牙
Scanning ...
04:02:1F:A2:B2:AF huawei 10 # 手机
00:13:EF:A0:00:AF test # 蓝牙耳机
【参考】
http://blog.csdn.net/gatieme/article/details/48751743
http://blog.csdn.net/wangzhen209/article/category/5885205
http://blog.sina.com.cn/s/blog_533074eb01015hfc.html
hcid.conf配置文件
其中hcid.conf有关配对信息。其中security user;表示每次配对询问用户对方PIN,而auto则直接采用passkey中的PIN码。
如果修改了此文件则需要重启bluetooth服务。
重启蓝牙请使用如下命令
service bluetooth restart
或者
/etc/init.d/bluetooth restart
蓝牙设置状态:
- UP
- Down
- Inquiry Scan
- PAGE Scan
设置PSCAN和ISCAN后,才能被搜索或连接。Inquiry Scan状态表示设备可被inquiry. Page Scan状态表示设备可被连接。
- hciconfig hci0 iscan
- hciconfig hci0 pscan
- 或者:hciconfig hci0 piscan
基本socket知识
struct sockaddr
{
sa_family_t sa_family; //地址族
char sa_data[14]; //地址数据
};
如果是用AF_INET(IPV4),则它的地址类型sockaddr_in如下,刚好与struct sockaddr对应
struct sockaddr_in
{
sa_family_t sin_family; //地址族
uint16_t sip_port; //端口
struct in_addr sin_addr; //Internel 地址
unsigned char sin_zero[8]; //占位字节
};
如果是用Bluetooth协议族(PF_BLUETOOTH)中的协议l2cap(BTPROTO_L2CAP),则地址格式如下:
struct sockaddr_l2
{
sa_family_t l2_family; //地址族
unsigned short l2_psm; //PSM
bdaddr_t l2_bdaddr; //Bluetooth 地址
unsigned short l2_cid;
};
蓝牙驱动
在内核选中支持蓝牙相关选项后,重新编译内核,会出现下面几个和蓝牙有关的驱动:
- bluetooth.ko
- bnep.ko
- rfcomm.ko
- hci_uart.ko
可以写个脚本,需要在系统启动的时候,加载这几个驱动
#!/bin/bash
insmod bluetooth.ko
insmod bnep.ko
insmod rfcomm.ko
insmod hci_uart.ko
蓝牙启动脚本 /etc/init.d/bluetooth
脚本地址:https://github.com/liangjfblue/bluezTest ,麻烦给个星星,谢谢
执行蓝牙启动脚本 /etc/init.d/bluetooth start,开启蓝牙,此后就可以对蓝牙进程应用编程了
蓝牙应用编程
demo地址:https://github.com/liangjfblue/bluezTest ,麻烦给个星星,谢谢
linux下蓝牙开发(bluez应用)的更多相关文章
- Linux 下蓝牙bluez分析及使用 (1)
蓝牙耳机的使用 由于Linux下蓝牙使用不及Windows下直观,致使使用时会出现一些小问题.虽然是小问题,但是由于普通的操作都具有顺序性,前面的中断了,后面的哪怕再简单,也无法继续了.正好近期工作与 ...
- Linux下c开发 之 线程通信(转)
Linux下c开发 之 线程通信(转) 1.Linux“线程” 进程与线程之间是有区别的,不过Linux内核只提供了轻量进程的支持,未实现线程模型.Linux是一种“多进程单线程”的操作系统.Linu ...
- 【转载】Visual Studio 2015 for Linux更好地支持Linux下的开发
原文:Visual Studio 2015 for Linux更好地支持Linux下的开发 英文原文:Targeting Linux Made Easier in Visual Studio 2015 ...
- linux下C++开发工具
就C++开发工具而言,与Windows下微软(VC, VS2005等)一统天下相比,Linux/Unix下C++开发,可谓五花八门,各式各样.Emacs, vi, eclipse, anjuta,kd ...
- (转)Linux下C++开发初探
1.开发工具 Windows下,开发工具多以集成开发环境IDE的形式展现给最终用户.例如,VS2008集成了编辑器,宏汇编ml,C /C++编译器cl,资源编译器rc,调试器,文档生成工具, nmak ...
- Linux下golang开发环境搭建
对于golang开发来说,Windows下可以用vscode或者liteide都不错,但是Linux下的开发也就只有vim了,所以怎么搞笑的利用vim进行golang开发呢? 参考官方推荐的一个插件: ...
- deepin linux 下C开发环境配置
# deepin linux 下C开发环境配置 ## 前言-----------------------------deepin操作系统商店默认提供了 eclipse for c\c++但是系统没有提 ...
- Linux下c开发 之 线程通信
Linux下c开发 之 线程通信 1.Linux“线程” 进程与线程之间是有区别的,不过Linux内核只提供了轻量进程的支持,未实现线程模型.Linux是一种“多进程单线程”的操作系统.Linux本身 ...
- Linux下服务器端开发流程及相关工具介绍(C++)
去年刚毕业来公司后,做为新人,发现很多东西都没有文档,各种工具和地址都是口口相传的,而且很多时候都是不知道有哪些工具可以使用,所以当时就想把自己接触到的这些东西记录下来,为后来者提供参考,相当于一个路 ...
随机推荐
- FatMouse' Trade(Hdu 1009)
Description FatMouse prepared M pounds of cat food, ready to trade with the cats guarding the wareho ...
- BP算法在minist数据集上的简单实现
BP算法在minist上的简单实现 数据:http://yann.lecun.com/exdb/mnist/ 参考:blog,blog2,blog3,tensorflow 推导:http://www. ...
- Oracle-11g 中当执行 DBMS_STATS 时,因数据泵外部表文件缺失 Alert Log 告警 "ORA-20011、ORA-29913" 以及 "KUP-XXXXX"错误
:first-child { margin-top: 0; } blockquote > :last-child { margin-bottom: 0; } img { border: 0; m ...
- 535. Encode and Decode TinyURL 长短URL
[抄题]: TinyURL is a URL shortening service where you enter a URL such as https://leetcode.com/problem ...
- 数字图像处理实验(12):PROJECT 05-03,Periodic Noise Reduction Using a Notch Filter 标签: 图像处理MATLAB 2017-0
实验要求: Objective: To understand the principle of the notch filter and its periodic noise reducing abi ...
- 数字图像处理实验(11):PROJECT 05-02,Noise Reduction Using a Median Filter 标签: 图像处理MATLAB 2017-05-26 23:
实验要求: Objective: To understand the non-linearity of median filtering and its noise suppressing abili ...
- php连接redis
$redis = new Redis(); $redis->connect();
- Linux系统获取CPU温度
Linux系统获取CPU温度 摘自:https://jingyan.baidu.com/article/cbf0e500407d072eab289343.html 各位好,本篇将简单介绍如何在不同系列 ...
- Oracle——创建和管理表
一.常见的数据库对象 对象 描述 表 基本的数据存储集合,由行和列组成 视图 从表中抽出的逻辑上相关的数据集合 序列 提供有规律的数值 索引 提高查询的效率 同以词 给对象起别名 二.Oracle 数 ...
- ROW_NUMBER分页
var query = string.Format("SELECT {0} FROM (SELECT ROW_NUMBER() OVER (ORDER BY {3}) AS RowNum, ...