3028|6

130

帖子

13

TA的资源

一粒金砂(高级)

楼主
 

TivaWare和老流民软件还是有一定的修正和升级,附代码 [复制链接]

俺看到有的博主在此发文,还是把周立功的那些资料抄过来,
真的欠妥哟,周立功的那些资料的确很不错,不过对于TivaWare固件库
和表示方法,已经过时了!!!给段用TivaWare固件库写的代码,似乎有点与STM32趋同了哟!!


void
Delay(uint32_t ui32Seconds)
{
    //
    // Loop while there are more seconds to wait.
    //
    while(ui32Seconds--)
    {
        //
        // Wait until the SysTick value is less than 1000.
        //
        while(ROM_SysTickValueGet() > 1000)
        {
        }
        //
        // Wait until the SysTick value is greater than 1000.
        //
        while(ROM_SysTickValueGet() < 1000)
        {
        }
    }
}
//*****************************************************************************
//
// Display the interrupt state on the UART.  The currently active and pending
// interrupts are displayed.
//
//*****************************************************************************
void
DisplayIntStatus(void)
{
    uint32_t ui32Temp;
    //
    // Display the currently active interrupts.
    //
    ui32Temp = HWREG(NVIC_ACTIVE0);
    UARTprintf("\rActive: %c%c%c ", (ui32Temp & 1) ? '1' : ' ',
               (ui32Temp & 2) ? '2' : ' ', (ui32Temp & 4) ? '3' : ' ');
    //
    // Display the currently pending interrupts.
    //
    ui32Temp = HWREG(NVIC_PEND0);
    UARTprintf("Pending: %c%c%c", (ui32Temp & 1) ? '1' : ' ',
               (ui32Temp & 2) ? '2' : ' ', (ui32Temp & 4) ? '3' : ' ');
}
//*****************************************************************************
//
// This is the handler for INT_GPIOA.  It simply saves the interrupt sequence
// number.
//
//*****************************************************************************
void
IntGPIOa(void)
{
    //
    // Set PE1 high to indicate entry to this interrupt handler.
    //
    ROM_GPIOPinWrite(GPIO_PORTE_BASE, GPIO_PIN_1, GPIO_PIN_1);
    //
    // Put the current interrupt state on the display.
    //
    DisplayIntStatus();
    //
    // Wait two seconds.
    //
    Delay(2);
    //
    // Save and increment the interrupt sequence number.
    //
    g_ui32GPIOa = g_ui32Index++;
    //
    // Set PE1 low to indicate exit from this interrupt handler.
    //
    ROM_GPIOPinWrite(GPIO_PORTE_BASE, GPIO_PIN_1, 0);
}
//*****************************************************************************
//
// This is the handler for INT_GPIOB.  It triggers INT_GPIOA and saves the
// interrupt sequence number.
//
//*****************************************************************************
void
IntGPIOb(void)
{
    //
    // Set PE2 high to indicate entry to this interrupt handler.
    //
    ROM_GPIOPinWrite(GPIO_PORTE_BASE, GPIO_PIN_2, GPIO_PIN_2);
    //
    // Put the current interrupt state on the display.
    //
    DisplayIntStatus();

[ 本帖最后由 minjiang 于 2013-7-14 21:35 编辑 ]

最新回复

谢谢楼主分享  详情 回复 发表于 2013-7-18 09:13

点评

没看出有什么区别呢,我也看成老流氓了,呵呵  详情 回复 发表于 2013-7-15 15:11
 
点赞 关注
个人签名good

回复
举报

177

帖子

0

TA的资源

一粒金砂(中级)

沙发
 

抖一眼看成了“老流氓”了,哈哈!

 
 

回复

2万

帖子

74

TA的资源

管理员

板凳
 
呵呵 谢谢楼主分享
加EE小助手好友,
入技术交流群
EE服务号
精彩活动e手掌握
EE订阅号
热门资讯e网打尽
聚焦汽车电子软硬件开发
认真关注技术本身
 
个人签名

加油!在电子行业默默贡献自己的力量!:)

 
 

回复

1803

帖子

0

TA的资源

五彩晶圆(高级)

4
 

回复 楼主minjiang 的帖子

没看出有什么区别呢,我也看成老流氓了,呵呵

点评

俺需要的就是这个效果,并且俺是开眼睛店的,今天做活动要不给您换一副,打5折,呵呵!!:Laugh::Laugh: [ 本帖最后由 minjiang 于 2013-7-17 07:12 编辑 ]  详情 回复 发表于 2013-7-17 07:08
 
 
 

回复

130

帖子

13

TA的资源

一粒金砂(高级)

5
 
原帖由 Study_Stellaris 于 2013-7-15 15:11 发表
没看出有什么区别呢,我也看成老流氓了,呵呵

俺需要的就是这个效果,并且俺是开眼睛店的,今天做活动要不给您换一副,打5折,呵呵!!

[ 本帖最后由 minjiang 于 2013-7-17 07:12 编辑 ]

点评

这个营销方式好 哈  详情 回复 发表于 2013-7-17 11:12
 
个人签名good
 
 

回复

2万

帖子

74

TA的资源

管理员

6
 
原帖由 minjiang 于 2013-7-17 07:08 发表

俺需要的就是这个效果,并且俺是开眼睛店的,今天做活动要不给您换一副,打5折,呵呵!!
这个营销方式好 哈
加EE小助手好友,
入技术交流群
EE服务号
精彩活动e手掌握
EE订阅号
热门资讯e网打尽
聚焦汽车电子软硬件开发
认真关注技术本身
 
个人签名

加油!在电子行业默默贡献自己的力量!:)

 
 

回复

672

帖子

0

TA的资源

版主

7
 
谢谢楼主分享
 
 
 

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

随便看看
查找数据手册?

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