📄 csl_vfoc_defaults.h
字号:
/** @file csl_vfoc_defaults.h
*
* @brief Header file for functional layer of CSL
*
* Description
* - Default structure instantiations for the CSL_vfocHwSetup() function
*
* @date 31st May, 2005
* @author Jesse Villarreal
*/
#include <csl_vfoc.h>
/* Default instantiation of lookup table
*/
static Uint32 csl_vfocLutDfault[] = {
0x00000100, 0x00000400, 0x00000900, 0x00001000, 0x00001900, 0x00002400,
0x00003100, 0x00004000, 0x00005100, 0x00006400, 0x00007900, 0x00009000,
0x0000A900, 0x0000C400, 0x0000E100, 0x00010000, 0x00012100, 0x00014400,
0x00016900, 0x00019000, 0x0001B900, 0x0001E400, 0x00021100, 0x00024000,
0x00027100, 0x0002A400, 0x0002D900, 0x00031000, 0x00034900, 0x00038400,
0x0003C100, 0x00040000, 0x00044100, 0x00048400, 0x0004C900, 0x00051000,
0x00055900, 0x0005A400, 0x0005F100, 0x00064000, 0x00069100, 0x0006E400,
0x00073900, 0x00079000, 0x0007E900, 0x00084400, 0x0008A100, 0x00090000,
0x00096100, 0x0009C400, 0x000A2900, 0x000A9000, 0x000AF900, 0x000B6400,
0x000BD100, 0x000C4000, 0x000CB100, 0x000D2400, 0x000D9900, 0x000E1000,
0x000E8900, 0x000F0400, 0x000F8100, 0x00100000
};
/* Default instantiation of CSL_VfocWinSize
*/
static CSL_VfocWinSize csl_vfocWinSizeDfault = {
CSL_VFOC_W0, /* winNum */
0, /* startHorz */
256, /* endHorz */
0, /* startVert */
256 /* endVert */
};
/* Default instantiation of CSL_VfocHwSetup. See default structs in this file
* to see what the settings are.
*/
static CSL_VfocHwSetup csl_vfocHWSetupDfault = {
CSL_VFOC_BIN_ENABLE, /* binning */
CSL_VFOC_SELECT_ABS_13, /* abs */
csl_vfocLutDfault, /* lutEntry */
&csl_vfocWinSizeDfault, /* win0 */
NULL, /* win1 */
NULL, /* win2 */
NULL, /* win3 */
NULL, /* win4 */
NULL /* win5 */
};
#define CSL_VFOC_HWSETUP_DEFAULTS csl_vfocHWSetupDfault
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -