Go to the source code of this file.
Enumerations | |
enum | Ctrl_status { CTRL_GOOD = (PASS ), CTRL_FAIL = (FAIL ), CTRL_NO_PRESENT = (FAIL+1), CTRL_BUSY = (FAIL+2) } |
Define control status. More... |
Definition in file ctrl_status.h.
enum Ctrl_status |
Define control status.
Definition at line 59 of file ctrl_status.h.
00060 { 00061 CTRL_GOOD =(PASS ) // It is ready 00062 , CTRL_FAIL =(FAIL ) // Memory fail 00063 , CTRL_NO_PRESENT =(FAIL+1) // Memory unplug 00064 , CTRL_BUSY =(FAIL+2) // Not initialize 00065 } Ctrl_status;