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.

MSP-EXP432P401R评估版无法调试

芯片:MSP432P401R

开发环境:Code Composer Studio Version: 9.1.0.00010 

问题描述:

我使用CCS打开MSP432SDK下的点灯例程,编译没有报错,但是下载调试的时候,一直无法正常调试,而且下载过程中还报了一条错误,错误详情如下:

CORTEX_M4_0: Error initializing flash programming: Your XMS432P401R material is no longer supported. We recommend you moving to production-quality MSP432P401R/M silicon by ordering samples at www.ti.com/product/MSP432P401R

请问一下这个错误是什么原因产生的,看字面意思是说我的这个型号不再支持了,怎么会有这情况出现呢?

相关代码:

#include <ti/devices/msp432p4xx/driverlib/driverlib.h>

int main(void)
{
volatile uint32_t i;

// Stop watchdog timer
WDT_A_hold(WDT_A_BASE);

// Set P1.0 to output direction
GPIO_setAsOutputPin(
GPIO_PORT_P1,
GPIO_PIN0
);

while(1)
{
// Toggle P1.0 output
GPIO_toggleOutputOnPin(
GPIO_PORT_P1,
GPIO_PIN0
);

// Delay
for(i=100000; i>0; i--);
}
}