8171|4

144

帖子

0

TA的资源

一粒金砂(中级)

楼主
 

串口中断接收,IntMasterEnable是否是必须的? [复制链接]

刚做了串口中断的小程序,发现IntMasterEnable加不加都可以。串口中断接收,IntMasterEnable是否是必须的?

最新回复

那你都这样了,不就是不必要  详情 回复 发表于 2017-7-25 22:22
 
点赞 关注

回复
举报

149

帖子

0

TA的资源

纯净的硅(初级)

沙发
 
我也觉得系统上电后,好像默认总中断是打开的。。
 
 

回复

33

帖子

0

TA的资源

一粒金砂(高级)

板凳
 

回复 楼主 ebuffalo 的帖子

Cortex-M3上电默认是允许中断的到其内核的。

//! \return Returns \b true if interrupts were disabled when the function was
//! called or \b false if they were initially enabled.
//
//*****************************************************************************
tBoolean
IntMasterEnable(void)
{
    //
    // Enable processor interrupts.
    //
    return(CPUcpsie());
}

#if defined(ccs)
unsigned long
CPUcpsie(void)
{
    //
    // Read PRIMASK and enable interrupts.
    //
    __asm("    mrs     r0, PRIMASK\n"
          "    cpsie   i\n"
          "    bx      lr\n");

    //
    // The following keeps the compiler happy, because it wants to see a
    // return value from this function.  It will generate code to return
    // a zero.  However, the real return is the "bx lr" above, so the
    // return(0) is never executed and the function returns with the value
    // you expect in R0.
    //
    return(0);
}
#endif

[ 本帖最后由 beloved 于 2011-7-27 10:03 编辑 ]

PRIMASK.JPG (101.02 KB, 下载次数: 3)

PRIMASK

PRIMASK
 
 
 

回复

131

帖子

0

TA的资源

纯净的硅(中级)

4
 

回复 楼主 ebuffalo 的帖子

虽然是默认的,最好加上,这样才是写程序的好习惯。
 
 
 

回复

9

帖子

0

TA的资源

一粒金砂(初级)

5
 
那你都这样了,不就是不必要
 
 
 

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

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

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

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

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

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

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

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