?? pzsetup_1700.bat
字號:
@echo off
if not defined BUILD_INC set BUILD_INC="NO"
set _PZ_ROOT=C:/Nexperia_PZ/pz
set _PZ_ROOT1=C:\Nexperia_PZ\pz
copy %_PZ_ROOT1%\project\prjlist.txt %_PZ_ROOT1%\prjlist.txt
set _NXROOT=C:/Nexperia
set _TMROOT=%_NXROOT%/NDK5.8
set TCS=%_NXROOT%/TCS5.1
rem =============================================================================================
rem Add NDK executable paths to the DOS PATH:
set NDK_PATH=%_TMROOT%/sde/cygwin;%TCS%/bin;%_TMROOT%/tool/hosttarget/bin;%_TMROOT%/sde/scripts;
rem: not needed if you use MDS version
set JCON_PATH=%_TMROOT%/prod/mptk/comps/jtagStdio;
PATH=%MDS_TOOL_PATH%;%NDK_PATH%;%JCON_PATH%;%CYGWIN_PATH%;%PATH%;
rem =============================================================================================
rem -----------------------------------------------------------------------------------------
rem BUILD TYPE VARIABLES (sets the type of build, or the build "flavor"):
set _TMTGTREL=retail
rem Choices:
rem =retail
rem =assert
rem =trace
rem =debug
rem -----------------------------------------------------------------------------------------
rem HOST TYPE VARIABLES:
set _TMTCSHOST=nohost
rem Choices:
rem =nohost
rem =WinNT
set _TMPROJECT=%_PZ_ROOT%
set _TMTGTBUILDROOT=%_TMPROJECT%/%_TMTGTREL%_%_TMTCSHOST%_pnx1700
rem -----------------------------------------------------------------------------------------
rem HOST TYPE VARIABLES:
set _TMTGTCPUTYPE=tm5250
rem Choices:
rem =tm3260 for PNX1500
rem =tm5250 for PNX1700
rem -----------------------------------------------------------------------------------------
rem Diversity:
set _TMDIVERSITY=_pnx1700_rpc_sp_td_
rem If you need to change the defaults, do something like this to have the exProductionBurn
rem makefile build the main app to be booted from flash:
rem set _MAINAPP_DIVERSITY=_bffsro_jcon_pnx1700_sp_
rem set _MAINAPP_DIVERSITY=_jcon_pnx1700_sp_
rem -----------------------------------------------------------------------------------------
rem Boards:
set _TMTGTBOARDS=pzbslLcp
rem -----------------------------------------------------------------------------------------
rem Other options:
set JTAGCARD=mdsPci
set _TMECHO=
rem set _TMECHO=1
rem: Setting _TMECHO=1 gives a verbose output from the build for debugging
rem: We prefer this as the default so that customers sharing their build
rem: logs for debugging will have complete info.
rem: You can choose to set _TMECHO= to reduce the amount of information logged.
set _TMDBG=
rem set _TMDBG=1
rem -----------------------------------------------------------------------------------------
rem: These will usually not need to be changed:
set _TMBSL=_dvp1
set _TMLINKTYPE=static
set _TMSITE=svlbhs
set _TMTGTCPUCLASS=tm
set _TMTGTENDIAN=el
set _TMTGTOS=psos250
set _TMTGTOSCLASS=psos
set UNAME=cygwin
set _TMDIVERSITYMKLOC=tool/hosttarget/mk
set MAKE=gmake
set _TMMMIOBASE=0x1be00000
set _TMCACHEABLE_LIMIT=0x03fa0000
set _TMSTARTADDR=0x00001000
set _TMENDADDR=0x03fa0000
rem -----------------------------------------------------------------------------------------
rem Set the title of the command window to show handy info:
title %~n0: %1 (proj=%_TMPROJECT%) - %_TMDIVERSITY% (%_TMTCSHOST%) (%_TMTGTREL%)
rem =============================================================================================
rem Location of the temp directories used by the SDE2 builds.
rem
set MY_TEMP_DIR=C:\Nexperia_PZ\tmp
if not defined TEMP (
echo TEMP var is not set. Setting it to %MY_TEMP_DIR%
set TEMP=%MY_TEMP_DIR%
)
if not exist %TEMP%\nul (
echo Directory '%TEMP%' does not exist. Creating it now.
mkdir %TEMP%
)
if not defined TMP set TMP=%TEMP%
if not defined TMPDIR set TMPDIR=%TEMP%
if not defined TMPTMP set TMPTMP=%TEMP%
rem -----------------------------------------------------------------------------------------
rem Launch the SDE2 build:
if %BUILD_INC% == "YES" goto use_incremental_build
build_exeWin -gh %1 2>&1 | tee build_out.txt
if %BUILD_INC% == "NO" goto use_end
:use_incremental_build
gmake -C %1
:use_end
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -