⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nvram_def.c

📁 GM5621原代码
💻 C
字号:
//******************************************************************
//		This file is for default nvram mapping file when nvram is
// not configured in WB, or the configuration in WB is incorrect.
// It is mainly for:
//	1)	Debugging purpose
//	2) backward compatibility
//
//******************************************************************
#include "inc\all.h"

#ifdef USE_DEFAULT_CONFIGED_NVRAM_MAPPING
// Size of gmc_RomDirectory
BYTE ROM gmv_Size_DefaultRomDirectory = RomDirectorySize;

gmt_BLOCKINFO ROM gmc_DefaultRomDirectory[] =
{
	// BLOCK_ID=0 (Mode Independent)
	{
		ModeIndependentUserPreferencesStart,		// address
		ModeIndependentUserPrefSize | CRC_FLAG,		// length
	},


	// BLOCK_ID=1 (Mode Dependent decsription)
	{
		ModeDependentDescrTypeStart,					// address
		ModeDependentDescrTypeSize,						// length
	},



	// BLOCK_ID=2 (Preset Mode Dependent LookUp)
	{
		PresetModeLookUpEntryStart,					// address
		PresetModeLookUpEntrySize,				// length of each entry
	},


	// BLOCK_ID=3 (Preset Mode Dependent)
	{
		PresetModeDependentEntryStart,		 		// address
		PresetModeDependentEntrySize | CRC_FLAG,		// length of each entry
	},

	// BLOCK_ID=4 (User Mode Dependent LookUp)
	{
		UserModeLookUpEntryStart,					// address
		UserModeLookUpEntrySize,				// length of each entry
	},


	// BLOCK_ID=5 (User Mode Dependent)
	{
		UserModeDependentEntryStart,		 		// address
		UserModeDependentEntrySize | CRC_FLAG,		// length of each entry
	},

	// BLOCK_ID=6 (Color Temp)
	{
		ColorTempStart,								// address
		ColorTempSize | CRC_FLAG					// length
	},

	// BLOCK_ID=7 (Factory Dependent)
	{
		FactoryDependentEntryStart,					// address
		FactoryDependentEntrySize | CRC_FLAG,	// length
	},
	{
		HDCPDataStart,					        // address
		HDCPDataSize | CRC_FLAG,                       	// length
	},
	// (SystemInfo)
	{
		SystemInfoStart,								// address
		SystemInfoSize | CRC_FLAG					// length
	},
	// (SystemInfo)
	{
		IA_AutoADCCalibraionStart,								// address
		IA_AutoADCCalibraionSize | CRC_FLAG					// length
	},


};

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -