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 56 of file ctrl_status.h.
00057 { 00058 CTRL_GOOD =(PASS ) // It is ready 00059 , CTRL_FAIL =(FAIL ) // Memory fail 00060 , CTRL_NO_PRESENT =(FAIL+1) // Memory unplug 00061 , CTRL_BUSY =(FAIL+2) // Not initialize 00062 } Ctrl_status;
1.5.3