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

📄 make.bat

📁 CSR USB Driver的源文件
💻 BAT
字号:
@REM ****************************************************************************
@REM NAME
@REM 	make.bat  -  build the usb device driver
@REM 
@REM MODIFICATION HISTORY
@REM 	1.1	3:jan:01	at	Created.
@REM 	1.2	3:jan:01	at	Changed DDK description from NT to 2000.
@REM	1.3	3:jan:01	at	Removed short-circuit search for DDK.
@REM	1.4	24:jan:01	at	Search for DDK removed from batch file.
@REM	1.5	10:may:01	at	Results copied to the result directory.
@REM	1.6	8:nov:01	at	Added btwusb_csr_dfu.inf.
@REM	#9	15:jun:05	ajh	Changed DDK from 2000 to XP
@REM	#10	07:jul:05	ckl	Now releases both 2k and xp drivers
@REM	#11	14:jul:05	ckl	Uses free build, not Checked build.
@REM 
@REM CVS IDENTIFIER
@REM 	$Id: //depot/bc/bluesuite_1_24/devHost/usbDeviceDriver/sys/make.bat#1 $
@REM 	
@REM ****************************************************************************

@REM Set the environment for the Windows XP DDK
pushd %BASEDIR%\bin
call setenv.bat %BASEDIR% fre WXP
echo on
popd
@REM Build the XP device driver
build -cZ

@REM Set the environment for the Windows 2K DDK
pushd %BASEDIR%\bin
call setenv.bat %BASEDIR% w2k f
echo on
popd

@REM Build the device driver
build -cZ


@REM Path to the root of the build tree
set TOP=..\..\..

@REM Individual output directories
set RESULT=%TOP%\result
set BINBASE=%RESULT%\bin
set BIN=%BINBASE%\release

@REM Ensure that the directories exist
if not exist %RESULT% mkdir %RESULT%
if not exist %BINBASE% mkdir %BINBASE%
if not exist %BIN% mkdir %BIN%

@REM Copy the output files
copy /b CSRBlueCoreUSB.inf %BIN%
copy /b objfre_wxp_x86\i386\csrbcxp.sys %BIN%
copy /b objfre_w2k_x86\i386\csrbc2k.sys %BIN%

	

⌨️ 快捷键说明

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