建立最简单的测试工程 - 玩转赛灵思Zedboard开发板(2):最简单的测试工程

2012年11月26日 15:49 来源:cnblogs 作者:超群天晴 我要评论(0)

标签:Zynq-7000(23)赛灵思(182)ARM(1148)FPGA开发板(12)Zedboard(3)

  新工程建立向导。这里我们建立最简单的测试工程helloworld。

  新工程建立向导。这里我们建立最简单的测试工程helloworld。

  修改源代码。将工程源文件内容修改,如下

  修改源代码。将工程源文件内容修改,如下

  #include <stdio.h>

  #include “platform.h”

  void print(char *str);

  int main()

  {

  init_platform();

  print(“Hello World from Zynq\n\r”);

  print(“这是Zynq ARM 测试\n\r”);

  print(“2012年9月8日14:30:48\n\r”);

  print(“荣超群\n\r”);

  cleanup_platform();

  return 0;

  }

  至此,工程建立完成

  三、编译和下载

  给ZedBoard上电,将启动模式设置为Jtag启动,将mini USB下载线接上,并将mini USB to Uart接上。

  给ZedBoard上电,将启动模式设置为Jtag启动,将mini USB下载线接上,并将mini USB to Uart接上

  启动电脑上的超级终端,配置串口和波特率,115200

  启动电脑上的超级终端,配置串口和波特率,115200

  右键工程hello_world_0,build,编译工程。

  右键工程hello_world_0,run-》run configuration,打开下载配置界面。双击Xilinx C/C++ ELF,建立新的下载配置。默认即可。

  右键工程hello_world_0,run-》run configuration,打开下载配置界面。双击Xilinx C/C++ ELF,建立新的下载配置。默认即可

  点run,开始下载。等待下载完成,可以看到ZedBoard向超级终端发来的信息

  点run,开始下载。等待下载完成,可以看到ZedBoard向超级终端发来的信息

上一页1234

本文导航