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

📄 cfg.c

📁 Windows CE 6.0 BSP for the Beagle Board.
💻 C
字号:
//
// Copyright (c) Special Computing.  All rights reserved. 
// Copyright (c) Microsoft Corporation.  All rights reserved.
//
//------------------------------------------------------------------------------
//
//  File:  cfg.c
//
//  This file implements functions used to load/save EBOOT configuration info.
//	This is a RAM based version of EBOOT therefor mostly stubs.
//
//------------------------------------------------------------------------------
#include <eboot.h>


//------------------------------------------------------------------------------

BOOL BLReadBootCfg(BOOT_CFG *pBootCfg)
{
	return FALSE;
}

//------------------------------------------------------------------------------

BOOL BLWriteBootCfg(BOOT_CFG *pBootCfg)
{
	return FALSE;
}


BOOL LANReadEEPROM(UINT8 *pAddress, UINT16 EEPROMAddress , UINT16 *pwVal) 
{
    return FALSE;
}

BOOL LANWriteEEPROM(UINT8 *pAddress, UINT16 EEPROMAddress, UINT16 Data ) 
{
    return FALSE;
}

//------------------------------------------------------------------------------

BOOL BLReadMAC(BOOT_CFG *pConfig, UINT16 *pMAC)
{
    return FALSE;
}

//------------------------------------------------------------------------------

BOOL BLWriteMAC(BOOT_CFG *pConfig, UINT16 MAC[3])
{
    return FALSE;
}

⌨️ 快捷键说明

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