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.

ErrorCode/WIFICode.h

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

File content as of revision 9:0ce800923eda:

#ifndef SmartLab_MuRata_ErrorCode_WIFICode
#define SmartLab_MuRata_ErrorCode_WIFICode

namespace SmartLabMuRata
{
/// WIFI API Response Code
enum WIFICode {
    WIFI_NORESPONSE = -1,
    WIFI_SUCCESS = 0x00,
    WIFI_ERR_UNKNOWN_COUNTRY = 0x01,
    WIFI_ERR_INIT_FAIL = 0x02,
    WIFI_ERR_ALREADY_JOINED = 0x03,
    WIFI_ERR_AUTH_TYPE = 0x04,
    WIFI_ERR_JOIN_FAIL = 0x05,
    WIFI_ERR_NOT_JOINED = 0x06,
    WIFI_ERR_LEAVE_FAILED = 0x07,
    WIFI_COMMAND_PENDING = 0x08,
    WIFI_WPS_NO_CONFIG = 0x09,
    WIFI_NETWORK_UP = 0x10,
    WIFI_NETWORK_DOWN = 0x11,
    WIFI_FAIL = 0xFF,
};
}

#endif