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.

Committer:
yangcq88517
Date:
Wed Mar 16 15:04:46 2016 +0000
Revision:
9:0ce800923eda
Parent:
0:8e83b9448758
bug fix

Who changed what in which revision?

UserRevisionLine numberNew contents of line
yangcq88517 0:8e83b9448758 1 #ifndef SmartLab_MuRata_ErrorCode_WIFICode
yangcq88517 0:8e83b9448758 2 #define SmartLab_MuRata_ErrorCode_WIFICode
yangcq88517 0:8e83b9448758 3
yangcq88517 0:8e83b9448758 4 namespace SmartLabMuRata
yangcq88517 0:8e83b9448758 5 {
yangcq88517 9:0ce800923eda 6 /// WIFI API Response Code
yangcq88517 0:8e83b9448758 7 enum WIFICode {
yangcq88517 0:8e83b9448758 8 WIFI_NORESPONSE = -1,
yangcq88517 0:8e83b9448758 9 WIFI_SUCCESS = 0x00,
yangcq88517 0:8e83b9448758 10 WIFI_ERR_UNKNOWN_COUNTRY = 0x01,
yangcq88517 0:8e83b9448758 11 WIFI_ERR_INIT_FAIL = 0x02,
yangcq88517 0:8e83b9448758 12 WIFI_ERR_ALREADY_JOINED = 0x03,
yangcq88517 0:8e83b9448758 13 WIFI_ERR_AUTH_TYPE = 0x04,
yangcq88517 0:8e83b9448758 14 WIFI_ERR_JOIN_FAIL = 0x05,
yangcq88517 0:8e83b9448758 15 WIFI_ERR_NOT_JOINED = 0x06,
yangcq88517 0:8e83b9448758 16 WIFI_ERR_LEAVE_FAILED = 0x07,
yangcq88517 0:8e83b9448758 17 WIFI_COMMAND_PENDING = 0x08,
yangcq88517 0:8e83b9448758 18 WIFI_WPS_NO_CONFIG = 0x09,
yangcq88517 0:8e83b9448758 19 WIFI_NETWORK_UP = 0x10,
yangcq88517 0:8e83b9448758 20 WIFI_NETWORK_DOWN = 0x11,
yangcq88517 0:8e83b9448758 21 WIFI_FAIL = 0xFF,
yangcq88517 0:8e83b9448758 22 };
yangcq88517 0:8e83b9448758 23 }
yangcq88517 0:8e83b9448758 24
yangcq88517 0:8e83b9448758 25 #endif