问题如题
扫描的模式有如下几种,请问各有什么区别,特别是第二和第三,谢谢!
#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
#define DEVDISC_MODE_GENERAL 0x01 //!< General Discoverable devices
#define DEVDISC_MODE_LIMITED 0x02 //!< Limited Discoverable devices
#define DEVDISC_MODE_ALL 0x03 //!< Not filtered
Viki Shi:
简单来说,general discoverable mode下设备一直可以被发现,而limited discoverable mode下设备只能在一段时间内被发现,蓝牙规定是30.72s
Viki Shi:
这篇文档有更详细的各模式介绍: http://www.amd.e-technik.uni-rostock.de/ma/gol/lectures/wirlec/bluetooth_info/k1_gap.html#Discoverability%20Modes
haibin deng:
回复 Viki Shi:
谢谢!