This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

DSLite是什么?



在目录C:\ti\msp\MSPWare_2_30_00_49\examples\boards\MSP-EXP432P401R\MSP-EXP432P401R_Software_Examples\Firmware\Binary\DSLite\

发现了一个很好的东西。可以将.out文件方便的写入到芯片。

我想知道关于该工具更多的信息。于是调用了帮助信息得到如下:

如图所示,另外找到了一个使用批处理的示例。

CLS
@echo off
rem This is a small helper script that programs a prebuilt binary for a device using DSLite
rem
rem Eric Chen, MSP430 Applications, Texas Instruments, Inc.
rem Last modified: 05/07/2015
:input
@echo MSP-EXP432P401R-LaunchPad Firmware Programmer

set targetconfig=..\DSLite\MSP432P401R.ccxml
set firmware=OutOfBox_MSP432P401R.out

@echo Programing %firmware% into %device% ......
..\DSLite\DebugServer\bin\DSLite.exe -c %targetconfig% -f %firmware%

pause

------------------------

可以知道-c是指定.ccxml工具,-f是指定.out文件。

 -f是用来

specify program or binary file to flash  写入Flash的指定程序或二进制文件。

那么这里用CCS的就是.out文件,我想知道,可以是HEX文件吗?可以是Keil的AXF(ARM Executable File)文件吗?

因为我使用Keil无法直接Load程序,不知是因为技术原因,还是大家都跟我一样。求解。。。