This graph shows which files directly or indirectly include this file:
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... |
Please read file license.txt for copyright notice.
This interface may be controled by a "Access Memory Control" for :
Definition in file ctrl_status.h.
enum Ctrl_status |
Define control status.
Definition at line 29 of file ctrl_status.h.
00030 { 00031 CTRL_GOOD =(PASS ) // It is ready 00032 , CTRL_FAIL =(FAIL ) // Memory fail 00033 , CTRL_NO_PRESENT =(FAIL+1) // Memory unplug 00034 , CTRL_BUSY =(FAIL+2) // Not initialize 00035 } Ctrl_status;