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/ResetCode.h

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

File content as of revision 9:0ce800923eda:

#ifndef SmartLab_MuRata_Type_ResetCode
#define SmartLab_MuRata_Type_ResetCode

namespace SmartLabMuRata
{
/// WiFi Reset Response Code
enum ResetCode {
    N0_Indication = -1,
    Window_Watchdog_Reset = 0x4000,
    Independent_Watchdog_Reset = 0x2000,
    Software_Reset = 0x1000,
    POR_PDR_Reset = 0x0800,
    Pin_Reset = 0x0400,
};
}

#endif