CC2640蓝牙主机扫描类型的区别
时间:10-02
整理:3721RD
点击:
问题如题
扫描的模式有如下几种,请问各有什么区别,特别是第二和第三,谢谢!
#define DEVDISC_MODE_NONDISCOVERABLE 0x00 //!< No discoverable setting
#define DEVDISC_MODE_GENERAL 0x01 //!< General Discoverable devices
#define DEVDISC_MODE_LIMITED 0x02 //!< Limited Discoverable devices
#define DEVDISC_MODE_ALL 0x03 //!< Not filtered
简单来说,general discoverable mode下设备一直可以被发现,而limited discoverable mode下设备只能在一段时间内被发现,蓝牙规定是30.72s
这篇文档有更详细的各模式介绍: http://www.amd.e-technik.uni-rostock.de/ma/gol/lectures/wirlec/bluetooth_info/k1_gap.html#Discoverability%20Modes
谢谢!