📄 jnand_tspans.h
字号:
#ifndef __JNAND_TSPANS_H__
#define __JNAND_TSPANS_H__
/*====*====*====*====*====*====*====*====*====*====*====*====*====*====*====*
GENERAL DESCRIPTION
This file contains definitions used to access the test span data used
in the self test module
Copyright (c) 2002 by QUALCOMM Incorporated. All Rights Reserved.
*====*====*====*====*====*====*====*====*====*====*====*====*====*====*====*/
/*===========================================================================
EDIT HISTORY FOR MODULE
This section contains comments describing changes made to the module.
Notice that changes are listed in reverse chronological order.
$Header: //depot/asic/MSMSHARED/tools/jnand/jnand_tspans.h#1 $ $DateTime: 2003/02/06 15:47:46 $ $Author: pingguan $
when who what, where, why
-------- --- ----------------------------------------------------------
02/06/03 pg Moved from ASWP402 server to ASWP401 server.
07/05/02 drh Created.
===========================================================================*/
/*
* This structure will be used as an array of these to feed spans
* out of a generated random character buffer and send them to JNAND
* for writing to the flash. Gaps are defined by looking at adjacent
* spans, not by any data in the struct.
*/
typedef struct tspans
{
unsigned int ioffset; /* offset into image */
unsigned int length; /* length of span */
} test_spans;
typedef struct si
{
test_spans *sptr;
const char *desc;
} span_info;
/* Put this in all fields of the last member of the array to signify end */
#define SPAN_END (0xFFFFFFFF)
/* extern declaration for array of pointers to span arrays */
extern span_info testcases[];
#endif /* __JNAND_TSPANS_H__ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -