2962|7

484

帖子

12

TA的资源

纯净的硅(高级)

楼主
 

学习M3/M4编程与调试并不一定需要板卡 [复制链接]

我觉得采用proteus学习ARM Cortex编程与调试也很方便,朝下面看M3闪烁灯程序的调试!

可视化调试1.PNG (130.45 KB, 下载次数: 0)

可视化调试1.PNG

最新回复

仿真跟实践终究有差别!!!没条件只能仿真那就仿真,,有条件最好上板子  详情 回复 发表于 2015-1-23 19:41
 
点赞 关注

回复
举报

484

帖子

12

TA的资源

纯净的硅(高级)

沙发
 
可视化单步

可视化调试2-1.PNG (94.17 KB, 下载次数: 0)

可视化调试2-1.PNG

点评

太方便了,甚至超过了在真实实验板上的单步调试  详情 回复 发表于 2015-1-23 12:47
 
 

回复

484

帖子

12

TA的资源

纯净的硅(高级)

板凳
 
太方便了,甚至超过了在真实实验板上的单步调试



可视化调试2.PNG (79.47 KB, 下载次数: 0)

可视化调试2.PNG

点评

结论:学习ARM Cortex编程,买本书就行了,甚至书都不用买,看看TI的文档就行!  详情 回复 发表于 2015-1-23 12:49
 
 
 

回复

484

帖子

12

TA的资源

纯净的硅(高级)

4
 
本帖最后由 平湖秋月 于 2015-1-23 12:59 编辑
平湖秋月 发表于 2015-1-23 12:47
太方便了,甚至超过了在真实实验板上的单步调试

结论:学习ARM Cortex编程,买本书就行了,甚至书都不用买,看看TI的文档就行!
//*****************************************************************************
#include "inc/lm3s301.h"
//*****************************************************************************
//
//! \addtogroup example_list
//!

Blinky (blinky)


//!
//! A very simple example that blinks the on-board LED.
//
//*****************************************************************************
//*****************************************************************************
//
// Blink the on-board LED.
//
//*****************************************************************************
int
main(void)
{
    volatile unsigned long ulLoop;
    //
    // Enable the GPIO port that is used for the on-board LED.
    //
    SYSCTL_RCGC2_R = SYSCTL_RCGC2_GPIOB;
    //
    // Do a dummy read to insert a few cycles after enabling the peripheral.
    //
    ulLoop = SYSCTL_RCGC2_R;
    //
    // Enable the GPIO pin for the LED (PB0).  Set the direction as output, and
    // enable the GPIO pin for digital function.  Care is taken to not disrupt
    // the operation of the PB7/TRST pin.
    //
    GPIO_PORTB_DIR_R |= 0x01;
    GPIO_PORTB_DEN_R |= 0x01;
    //
    // Loop forever.
    //
    while(1)
    {
        //
        // Turn on the LED.
        //
        GPIO_PORTB_DATA_R |= 0x01;
        //
        // Delay for a bit.
        //
        for(ulLoop = 0; ulLoop < 200000; ulLoop++)
        {
        }
        //
        // Turn off the LED.
        //
        GPIO_PORTB_DATA_R &= ~(0x01);
        //
        // Delay for a bit.
        //
        for(ulLoop = 0; ulLoop < 200000; ulLoop++)
        {
        }
    }
}




点评

你说的太绝了,我竟然无言以对  详情 回复 发表于 2015-1-23 14:09
 
 
 

回复

3416

帖子

0

TA的资源

纯净的硅(高级)

5
 
不支持M4吧
仿真这玩意儿......
还是有个板子比较靠谱
 
个人签名

So TM what......?

 

 

回复

484

帖子

12

TA的资源

纯净的硅(高级)

6
 
呵呵,M3与M4的编程有区别?呵呵,学习编程还是proteus方便。
 
 
 

回复

269

帖子

4

TA的资源

一粒金砂(中级)

7
 
平湖秋月 发表于 2015-1-23 12:49
结论:学习ARM Cortex编程,买本书就行了,甚至书都不用买,看看TI的文档就行!
//*****************************************************************************
#include "inc/lm3s301.h"
//*****************************************************************************
//
//! \addtogroup example_list
//! Blinky (blinky)
//!
//! A very simple example that blinks the on-board LED.
//
//*****************************************************************************
//*****************************************************************************
//
// Blink the on-board LED.
//
//*****************************************************************************
int
main(void)
{
    volatile unsigned long ulLoop;
    //
    // Enable the GPIO port that is used for the on-board LED.
    //
    SYSCTL_RCGC2_R = SYSCTL_RCGC2_GPIOB;
    //
    // Do a dummy read to insert a few cycles after enabling the peripheral.
    //
    ulLoop = SYSCTL_RCGC2_R;
    //
    // Enable the GPIO pin for the LED (PB0).  Set the direction as output, and
    // enable the GPIO pin for digital function.  Care is taken to not disrupt
    // the operation of the PB7/TRST pin.
    //
    GPIO_PORTB_DIR_R |= 0x01;
    GPIO_PORTB_DEN_R |= 0x01;
    //
    // Loop forever.
    //
    while(1)
    {
        //
        // Turn on the LED.
        //
        GPIO_PORTB_DATA_R |= 0x01;
        //
        // Delay for a bit.
        //
        for(ulLoop = 0; ulLoop < 200000; ulLoop++)
        {
        }
        //
        // Turn off the LED.
        //
        GPIO_PORTB_DATA_R &= ~(0x01);
        //
        // Delay for a bit.
        //
        for(ulLoop = 0; ulLoop < 200000; ulLoop++)
        {
        }
    }
}

你说的太绝了,我竟然无言以对


 
 
 

回复

164

帖子

0

TA的资源

一粒金砂(中级)

8
 
仿真跟实践终究有差别!!!没条件只能仿真那就仿真,,有条件最好上板子
 
 
 

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

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

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

 
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
快速回复 返回顶部 返回列表