Changeset 1dcc0b9 in mainline for uspace/drv/nic/ar9271/wmi.h


Ignore:
Timestamp:
2015-04-06T10:47:51Z (10 years ago)
Author:
Jan Kolarik <kolarik@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d7dadcb4
Parents:
59fa7ab
Message:

Scanning whole 2.4GHz spectrum, created supplicant for managing connection between device STA and AP, finished association process between STA and AP, handling 4way handshake protocol used for key management, written needed cryptographic algorithms (AES, SHA1, HMAC, PBKDF2) for CCMP protocol, data communication on OPEN/CCMP networks.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/nic/ar9271/wmi.h

    r59fa7ab r1dcc0b9  
    4242#define WMI_SERVICE_GROUP 1
    4343#define CREATE_SERVICE_ID(group, i) (int) (((int) group << 8) | (int) (i))
     44
     45#define WMI_MGMT_CMD_MASK 0x1000
    4446
    4547/**
     
    117119extern int wmi_reg_write(htc_device_t *htc_device, uint32_t reg_offset,
    118120        uint32_t val);
    119 extern int wmi_reg_set_clear_bit(htc_device_t *htc_device, uint32_t reg_offset,
    120         uint32_t set_bit, uint32_t clear_bit);
     121extern int wmi_reg_set_clear_bit(htc_device_t *htc_device,
     122        uint32_t reg_offset, uint32_t set_bit, uint32_t clear_bit);
    121123extern int wmi_reg_set_bit(htc_device_t *htc_device, uint32_t reg_offset,
    122124        uint32_t set_bit);
Note: See TracChangeset for help on using the changeset viewer.