4378|1

2002

帖子

24

TA的资源

五彩晶圆(高级)

楼主
 

TIVA C launchpad试用心得1.-uart调试输出实现 [复制链接]

拿到板子之前以为和之前的120板子不同,结果一模一样,只是换了个名字,那啥看来TI是在改变策略,和st和nxp的M4系列区分开来啊

参考之前的120板子,谢了个uart输出调试信息的例程,直接可用,果然是一样啊
  1. //*****************************************************************************

  2. #include "inc/hw_memmap.h"
  3. #include "inc/hw_types.h"
  4. #include "driverlib/debug.h"
  5. #include "driverlib/fpu.h"
  6. #include "driverlib/gpio.h"
  7. #include "driverlib/pin_map.h"
  8. #include "driverlib/rom.h"
  9. #include "driverlib/sysctl.h"
  10. #include "utils/uartstdio.h"

  11. //*****************************************************************************


  12. //*****************************************************************************
  13. //
  14. // Print "Hello World!" to the UART on the Stellaris evaluation board.
  15. //
  16. //*****************************************************************************
  17. int
  18. main(void)
  19. {
  20.     volatile unsigned long ulLoop;

  21.     //
  22.     // Enable lazy stacking for interrupt handlers.  This allows floating-point
  23.     // instructions to be used within interrupt handlers, but at the expense of
  24.     // extra stack usage.
  25.     //
  26.     ROM_FPULazyStackingEnable();

  27.     //
  28.     // Set the clocking to run directly from the crystal.
  29.     //
  30.     ROM_SysCtlClockSet(SYSCTL_SYSDIV_4 | SYSCTL_USE_PLL | SYSCTL_XTAL_16MHZ |
  31.                        SYSCTL_OSC_MAIN);

  32.                        
  33.     //
  34.     // Enable the GPIO port that is used for the on-board LED.
  35.     //
  36.     ROM_SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOF);

  37.     //
  38.     // Enable the GPIO pins for the LED (PF2 & PF3).  
  39.     //
  40.     ROM_GPIOPinTypeGPIOOutput(GPIO_PORTF_BASE, GPIO_PIN_2);

  41.                        
  42.     //
  43.     // Initialize the UART.
  44.     //
  45.     ROM_SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOA);
  46.     ROM_GPIOPinConfigure(GPIO_PA0_U0RX);
  47.     ROM_GPIOPinConfigure(GPIO_PA1_U0TX);
  48.     ROM_GPIOPinTypeUART(GPIO_PORTA_BASE, GPIO_PIN_0 | GPIO_PIN_1);
  49.     UARTStdioInit(0);

  50.     //
  51.     // Hello!
  52.     //
  53.     UARTprintf("Hello, world!\n");
  54.    
  55.     //
  56.     // We are finished.  Hang around doing nothing.
  57.     //
  58.     while(1)
  59.     {
  60.         //
  61.         // Turn on the BLUE LED.
  62.         //
  63.         GPIOPinWrite(GPIO_PORTF_BASE, GPIO_PIN_2, GPIO_PIN_2);

  64.         //
  65.         // Delay for a bit.
  66.         //
  67.         SysCtlDelay(SysCtlClockGet() / 10 / 3);

  68.         //
  69.         // Turn off the BLUE LED.
  70.         //
  71.         GPIOPinWrite(GPIO_PORTF_BASE, GPIO_PIN_2, 0);
  72.         
  73.         //
  74.         // Delay for a bit.
  75.         //
  76.         SysCtlDelay(SysCtlClockGet() / 10 / 3);
  77.     //
  78.     // Hello!
  79.     //
  80.     UARTprintf("Hello, world!\n");
  81.     }
  82. }
复制代码
1.0_My_Hello.rar (28.24 KB, 下载次数: 10, 售价: 1 分芯积分)

最新回复

我得板子自己就是没反应  详情 回复 发表于 2016-11-3 12:39
 
点赞 关注

回复
举报

2

帖子

0

TA的资源

一粒金砂(初级)

沙发
 
我得板子自己就是没反应
 
 

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

随便看看
查找数据手册?

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