Created
July 4, 2015 06:35
-
-
Save en129/754bbec0d4a247d939a5 to your computer and use it in GitHub Desktop.
LPCXpressoのredlinkを利用してD&DでSWD書き込みを行うバッチ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
REM ↓の1行を環境に合わせて変更してください | |
set LPCXPRESSO_DIR=C:\nxp\LPCXpresso_7.8.0_426\lpcxpresso | |
set REDLINK=%LPCXPRESSO_DIR%\bin\crt_emu_cm_redlink.exe | |
set TARGET=LPC1114FN/102 | |
set FLASH_DRIVER=%LPCXPRESSO_DIR%\bin\Flash\LPC11_12_13_32K_4K.cfx | |
%REDLINK% -flash-load-exec %1 -g -2 -vendor=NXP -p%TARGET% -flash-driver=%FLASH_DRIVER% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
REM ↓の1行を環境に合わせて変更してください | |
set LPCXPRESSO_DIR=C:\nxp\LPCXpresso_7.8.0_426\lpcxpresso | |
set REDLINK=%LPCXPRESSO_DIR%\bin\crt_emu_cm_redlink.exe | |
set TARGET=LPC11E68 | |
set FLASH_DRIVER=%LPCXPRESSO_DIR%\bin\Flash\LPC11U6x_256K.cfx | |
%REDLINK% -flash-load-exec %1 -g -2 -vendor=NXP -p%TARGET% -flash-driver=%FLASH_DRIVER% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
REM ↓の1行を環境に合わせて変更してください | |
set LPCXPRESSO_DIR=C:\nxp\LPCXpresso_7.8.0_426\lpcxpresso | |
set REDLINK=%LPCXPRESSO_DIR%\bin\crt_emu_cm_redlink.exe | |
set TARGET=LPC1768 | |
set FLASH_DRIVER=%LPCXPRESSO_DIR%\bin\Flash\LPC175x_6x_512.cfx | |
%REDLINK% -flash-load-exec %1 -g -2 -vendor=NXP -p%TARGET% -flash-driver=%FLASH_DRIVER% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
REM ↓の1行を環境に合わせて変更してください | |
set LPCXPRESSO_DIR=C:\nxp\LPCXpresso_7.8.0_426\lpcxpresso | |
set REDLINK=%LPCXPRESSO_DIR%\bin\crt_emu_cm_redlink.exe | |
set TARGET=LPC824 | |
set FLASH_DRIVER=%LPCXPRESSO_DIR%\bin\Flash\LPC800_32.cfx | |
%REDLINK% -flash-load-exec %1 -g -2 -vendor=NXP -p%TARGET% -flash-driver=%FLASH_DRIVER% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment