hciconfig Possui códigos hexadecimais

1

Não consigo encontrar em nenhum lugar o que os códigos hexadecimais listados em hciconfig Features representam. Alguém sabe onde posso encontrar uma lista para mostrar qual característica corresponde a qual código hexadecimal?

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
    
por MrUser 03.06.2014 / 12:54

1 resposta

0

Como isso: link

hci0 ou hci (x) é o nome do seu dispositivo Bluetooth e você pode obter todos os dispositivos disponíveis usando o comando: $ hciconfig , mas se você selecionar um deles, poderá usar: hciconfig -a hcix para ver suas informações, e também seus futuros usando o comando que você digitou aqui na sua pergunta $ hciconfig hci0 features , que mostra todos os recursos suportados pelo seu dispositivo bluetooth.

se você quiser saber por exemplo qual é o significado de "3-slot packets" ou "interlaced pscan" estes são futuros suportados pelo dispositivo, mas para conhecer os detalhes desses futuros existe um fórum para desenvolvedores de Bluetooth: < a href="https://developer.bluetooth.org/Pages/default.aspx"> link

você terá mais detalhes.

    
por TiMr 03.06.2014 / 13:55