TI中文支持网
TI专业的中文技术问题搜集分享网站

FR5994下载失败

FR5994的开发板,下载失败:

1. 如果将IAR-》Linker-》format 配置为other,那么下载不进去

Sun Mar 12, 2017 17:17:39: Using license: Standalone license – IAR Embedded Workbench for Texas Instruments MSP430Sun Mar 12, 2017 17:17:39: Failed to load debugee: 。。。。。。。

2. 如果将IAR-》Linker-》format 配置为前面那个选项,下载时弹出

点击确认继续下载,然后Debug log窗会出现:

Sun Mar 12, 2017 17:19:44: Illegal register  LEASCIE.LEASCTIE  in interrupt description:LEA_SC_VECTOR  0x24  2  LEASCIE.LEASCTIE  LEASCIFG.LEASCTIFGSun Mar 12, 2017 17:21:54: Warning: Finished loading interrupt definitions. There were 1 error(s), see the log window.Sun Mar 12, 2017 17:21:54: There was 1 warning during the initialization of the debugging session.

其实没有下载成功。。

代码很简单:

#include "msp430fr5994.h"

int main(void)
{
    WDTCTL = WDTPW | WDTHOLD;               // Stop WDT
    CSCTL0 = CSKEY;                   //password
    CSCTL1 = DCOFSEL0 + DCOFSEL1;     // Set DCO = 8Mhz
    CSCTL2 = SELM__DCOCLK;             // MCLK=DCO
    CSCTL3 = DIVM__1;                 // Divide DCO/1
    
    // Configure GPIO
    P1OUT &= ~BIT0;                         // Clear P1.0 output latch for a defined power-on state
    P1DIR |= BIT0;                          // Set P1.0 to output direction

    PM5CTL0 &= ~LOCKLPM5;                   // Disable the GPIO power-on default high-impedance mode
                                            // to activate previously configured port settings

    while(1)
    {
        P1OUT ^= BIT0;                      // Toggle LED
        __delay_cycles(100000);
    }
}

不知道什么原因。。还望大神分析

Maka Luo:

LEA_SC_VECTOR  0x24  2  LEASCIE.LEASCTIE  LEASCIFG.LEASCTIFG 

这个应该是你仿真器那边报错,MSP430FR没有这个。换个debug工具试试,TI的评估板都带仿真工具。应该和你的代码没有关系。

灰小子:

楼主用的什么型号的仿真器?

Ling Zhu2:

你的龙猫

FR5994的开发板,下载失败:

1. 如果将IAR-》Linker-》format 配置为other,那么下载不进去

Sun Mar 12, 2017 17:17:39: Using license: Standalone license – IAR Embedded Workbench for Texas Instruments MSP430 Sun Mar 12, 2017 17:17:39: Failed to load debugee: 。。。。。。。

2. 如果将IAR-》Linker-》format 配置为前面那个选项,下载时弹出

点击确认继续下载,然后Debug log窗会出现:

Sun Mar 12, 2017 17:19:44: Illegal register  LEASCIE.LEASCTIE  in interrupt description: LEA_SC_VECTOR  0x24  2  LEASCIE.LEASCTIE  LEASCIFG.LEASCTIFG Sun Mar 12, 2017 17:21:54: Warning: Finished loading interrupt definitions. There were 1 error(s), see the log window. Sun Mar 12, 2017 17:21:54: There was 1 warning during the initialization of the debugging session.

其实没有下载成功。。

代码很简单:

#include "msp430fr5994.h"int main(void){    WDTCTL = WDTPW | WDTHOLD;               // Stop WDT    CSCTL0 = CSKEY;                   //password    CSCTL1 = DCOFSEL0 + DCOFSEL1;     // Set DCO = 8Mhz    CSCTL2 = SELM__DCOCLK;             // MCLK=DCO    CSCTL3 = DIVM__1;                 // Divide DCO/1        // Configure GPIO    P1OUT &= ~BIT0;                         // Clear P1.0 output latch for a defined power-on state    P1DIR |= BIT0;                          // Set P1.0 to output direction    PM5CTL0 &= ~LOCKLPM5;                   // Disable the GPIO power-on default high-impedance mode                                            // to activate previously configured port settings    while(1)    {        P1OUT ^= BIT0;                      // Toggle LED        __delay_cycles(100000);    }}

不知道什么原因。。还望大神分析

你的龙猫:

回复 Ling Zhu2:

老样子

你的龙猫:

回复 灰小子:

eZ-FET0on-board0debug0probe0EnablesUdebuggingAprogrammingUasUwellUasUcommunicationUbackUtoUtheUPCBUTheUeZIFETUcanUalsoUprovideUpowerUtoUtheUtargetUMCUB

就是用的评估板自带的USB下载的?不知道为什么下载不成功了

Ling Zhu2:

回复 你的龙猫:

你的龙猫

eZ-FET0on-board0debug0probe0EnablesUdebuggingAprogrammingUasUwellUasUcommunicationUbackUtoUtheUPCBUTheUeZIFETUcanUalsoUprovideUpowerUtoUtheUtargetUMCUB

就是用的评估板自带的USB下载的?不知道为什么下载不成功了

你的龙猫:

回复 Ling Zhu2:

我是这样配置的啊 ,可是还是老样子。。。。这种配置我下载FW到其他板子都是正常的    就是用USB下载到5994这块开发板不行   

Ling Zhu2:

回复 你的龙猫:

你的龙猫

我是这样配置的啊 ,可是还是老样子。。。。这种配置我下载FW到其他板子都是正常的    就是用USB下载到5994这块开发板不行   

你的龙猫:

回复 Ling Zhu2:

就这么一块板子。。。我知道怎么避开这个问题了   虽然我还不知道什么原因  有可能是我的IAR

IAR新建的工程 就会出现这个问题,但是以前的就不会    真是郁闷啊    新旧两个工程菜单栏居然有差别 

灰小子:

回复 你的龙猫:

有时间的时候,重装下iar试试。可能有些选项被改变了。

赞(0)
未经允许不得转载:TI中文支持网 » FR5994下载失败
分享到: 更多 (0)