
蓝牙技术
文章平均质量分 57
jmhgg88
这个作者很懒,什么都没留下…
展开
-
AVRCP中控制音乐播放及暂停部分
Support Levels of operation_id in TG:operation_id Category 1: Player/Recorder Category 2:Monitor/Amplifier Category 3: Tuner Category原创 2011-09-15 00:17:29 · 678 阅读 · 0 评论 -
Android Bluetooth现状(转)
原文:http://niweiwei.iteye.com/blog/1013013一、Android Bluetooth现状(1)Android2.2版 支持的蓝牙核心版本是Bluetooth 2.0 + EDR。(2)Android 的蓝牙 使用了BlueZ协议转载 2011-10-18 22:45:54 · 706 阅读 · 0 评论 -
Supported Profiles
原文:http://www.bluez.org/profiles/Supported ProfilesLower level Host StackCore specification 4.0. Not (yet) 3.0+HS. Includes GAP, L转载 2011-10-18 22:47:31 · 460 阅读 · 0 评论 -
Android 蓝牙( Bluetooth)耳机连接分析及实现
Android 实现了对Headset 和Handsfree 两种profile 的支持。其实现核心是BluetoothHeadsetService,在PhoneApp 创建的时候会启动它。 if (getSystemService(Context.BLUETOOTH_SERVICE) != null) { mBtHandsfree = new BluetoothHandsfree(th转载 2011-11-14 22:44:57 · 2222 阅读 · 0 评论 -
linux蓝牙驱动代码阅读笔记
linux蓝牙驱动代码阅读笔记昨天看了一下介绍蓝牙协议文档,今天索性对照看了看kernel里的代码(bluez),这里记点笔记,还是继承了老毛病,只关注整体流程而忽略细节,先了解个大概,等真正需要时再仔细分析。net/hci_core.cHCI 在主机端的驱动主要是为上层提供一个统一的接口,让上层协议不依赖于具体硬件的实现。HCI在硬件中的固件与HCI在主机端的驱动通信方式转载 2011-11-15 00:46:20 · 1958 阅读 · 2 评论 -
linux下使用蓝牙设备
http://hi.baidu.com/zengzhaonong/blog/item/149b11f46fe92b6dddc474a4.html转载 2012-04-29 12:00:48 · 500 阅读 · 0 评论 -
ubuntu bluetooth 调试
源码:bluez_4.66.orig.tar.gz编译编译bluez-4.66时,在configure时,遇到如下dbus错误:configure: error: D-Bus library is required解决方法:sudo apt-get install libdbus-1-dev libdbus-glib-1-devmake -j4最终产生bluet原创 2012-05-21 22:38:41 · 3999 阅读 · 0 评论 -
ubuntu 蓝牙 命令行使用
原文:http://elsila.blog.163.com/blog/static/17319715820109221150815/一,蓝牙存储设备 蓝牙适配器: CSR蓝牙, USB接口 1,加载蓝牙适配器 插入USB口之后,可以使用lsusb命令,看到: Bus 004 Device 003: ID 1131:1001 Inte转载 2012-05-20 16:18:57 · 8781 阅读 · 3 评论 -
ubuntu bluetooth 配对过程
bluetoothd运行时(main函数启动时),加载plugin(调用plugin_init函数):gboolean plugin_init(GKeyFile *config){ GSList *list; GDir *dir; const gchar *file; gchar **disabled; unsigned int i; /* Make a call to B原创 2012-06-06 21:57:08 · 3240 阅读 · 0 评论