我似乎找不到 hciconfig 功能下列出的十六进制代码代表什么。有人知道我可以在哪里找到一个列表来显示哪个功能对应于哪个十六进制代码吗?
Output:
$ hciconfig -a hci0 features
hci0: Type: BR/EDR Bus: USB
BD Address: 00:0E:8E:49:38:9D ACL MTU: 820:8 SCO MTU: 255:16
Features page 0: 0xff 0xfb 0xff 0xfe 0xdb 0xff 0x7b 0x87
<3-slot packets> <5-slot packets> <encryption> <slot offset>
<timing accuracy> <role switch> <hold mode> <sniff mode>
<park state> <RSSI> <SCO link> <HV2 packets> <HV3 packets>
<u-law log> <A-law log> <CVSD> <paging scheme> <power control>
<transparent SCO> <broadcast encrypt> <EDR ACL 2 Mbps>
<EDR ACL 3 Mbps> <enhanced iscan> <interlaced iscan>
<interlaced pscan> <inquiry with RSSI> <extended SCO>
<EV4 packets> <EV5 packets> <AFH cap. slave>
<AFH class. slave> <LE support> <3-slot EDR ACL>
<5-slot EDR ACL> <sniff subrating> <pause encryption>
<AFH cap. master> <AFH class. master> <EDR eSCO 2 Mbps>
<EDR eSCO 3 Mbps> <3-slot EDR eSCO> <extended inquiry>
<LE and BR/EDR> <simple pairing> <encapsulated PDU>
<err. data report> <non-flush flag> <LSTO> <inquiry TX power>
<EPC> <extended features>
Features page 1: 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x00
答案1
就像这样:http://exploiterz.blogspot.com/2013/08/how-to-anonymize-bluetooth-devices-on.html
hci0 或 hci(x) 是您的蓝牙设备的名称,您可以使用以下命令获取所有可用设备:$ hciconfig
,但如果您选择其中一个,您可以使用:hciconfig -a hcix
查看其信息以及其未来,使用您在问题中键入的命令$ hciconfig hci0 features
显示您的蓝牙设备支持的所有功能。
例如,如果您想知道“3 槽数据包”或“隔行扫描 pscan”的含义,这些都是设备支持的未来,但要了解这些未来的详细信息,有一个蓝牙开发人员论坛:https://developer.bluetooth.org/Pages/default.aspx
它会给你更多的细节。