Murata RF modules are designed to simplify wireless development and certification by minimizing the amount of RF expertise you need to wirelessly enable a wide range of applications.

Type/SecurityMode.h

Committer:
yangcq88517
Date:
2016-03-16
Revision:
9:0ce800923eda
Parent:
0:8e83b9448758

File content as of revision 9:0ce800923eda:

#ifndef SmartLab_MuRata_Type_SecurityMode
#define SmartLab_MuRata_Type_SecurityMode

namespace SmartLabMuRata
{
enum SecurityMode {
    WIFI_SECURITY_OPEN = 0x00,
    WEP = 0x01,
    WIFI_SECURITY_WPA_TKIP_PSK = 0x02,
    WIFI_SECURITY_WPA2_AES_PSK = 0x04,
    WIFI_SECURITY_WPA2_MIXED_PSK = 0x06,
    
    /**
    * not avaliable for SOFT AP
    */
    WIFI_SECURITY_WPA_AES_PSK = 0x07,
    
    NOT_SUPPORTED = 0xFF,
};
}

#endif