2075|0

1

帖子

0

TA的资源

一粒金砂(初级)

楼主
 

求助5529用户程序中包含用于bsl升级的程序 [复制链接]

各位大神
       本人最近在用5529 通过 bsl升级程序,在msp430f5529的launch pad上 通过 bsl的方式已经实现了程序升级,现在的问题是在自己做的pcb上无法升级,下面的程序在5529launch pad的可以实现bsl程序升级,在自己做的板子上不行


#include "msp430f5529.h"

volatile unsigned char fInvokeBSL ;



void main(void) {

        fInvokeBSL = 0;

        WDTCTL = WDTPW + WDTHOLD; // Stop watchdog timer -- not used in this example

// Activate the sensing of 5V VBUS on the USB cable

        USBKEYPID = 0x9628; // Unlock the USB registers

        USBPWRCTL |= VBONIE; // Enable the VBUS-on interrupt

        USBKEYPID = 0x9600; // Lock the USB registers

//        SYSCTL = SYSBSLIND;



        while (1) {

                __bis_SR_register(GIE);

                USBCNF=PUR_EN+USB_EN;

                __bis_SR_register(LPM3_bits + GIE);

                // Go into LPM3; keep ints enabled.

                __disable_interrupt(); // Ensure no application interrupts fire during BSL

                if (fInvokeBSL)

                        ((void (*)()) 0x1000)(); // This sends execution to the BSL. When execution

// returns to the user app, it will be via the reset

        } // vector, meaning execution will re-start.

}

#pragma vector=USB_UBM_VECTOR // USB Interrupt Service Routine

__interrupt void iUsbInterruptHandler(void) {

        switch (__even_in_range(USBVECINT & 0x3f, USBVECINT_OUTPUT_ENDPOINT7)) {

        case USBVECINT_PWR_VBUSOn:

                fInvokeBSL = 1; // Set flag

                __bic_SR_register_on_exit(LPM3_bits);

                // Exit LPM3 when exiting the ISR.

                break;

        default:

                break;

        }

}


在launchpad 上可以被pc识别,现在主要的问题是在自己做的板子上pc无法识别,是我写的程序太简单了吗 ,哪个大神有5529用户程序中包含用于bsl升级的程序吗,能不能给我发一份,先谢过了


QQ截图20150804131938.png (24.07 KB, 下载次数: 0)

QQ截图20150804131938.png

X9B3~}3GJJE[GTNP{KZ4I%4.png (15.98 KB, 下载次数: 0)

X9B3~}3GJJE[GTNP{KZ4I%4.png
 
点赞 关注

回复
举报
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/9 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表