zoukankan      html  css  js  c++  java
  • SDK代码记录

    zynq中SDK相关API的学习。记录常用函数

    /******************************************************************************
    *
    * Copyright (C) 2009 - 2014 Xilinx, Inc.  All rights reserved.
    *
    * Except as contained in this notice, the name of the Xilinx shall not be used
    * in advertising or otherwise to promote the sale, use or other dealings in
    * this Software without prior written authorization from Xilinx.
    *
    ******************************************************************************/
    
    /*
     * helloworld.c: simple test application
     *
     * This application configures UART 16550 to baud rate 9600.
     * PS7 UART (Zynq) is not initialized by this application, since
     * bootrom/bsp configures it to baud rate 115200
     *
     * ------------------------------------------------
     * | UART TYPE   BAUD RATE                        |
     * ------------------------------------------------
     *   uartns550   9600
     *   uartlite    Configurable only in HW design
     *   ps7_uart    115200 (configured by bootrom/bsp)
     */
    
    /***************************** Include Files *********************************/
    #include "xparameters.h"
    #include "xgpio.h"
    #include "platform.h"
    
    /************************** Variable Defintions ******************************/
    /* Instance For GPIO */
    XGpio GpioOutput;
    
    int main()
    {
        u32 Delay;
        u32 Ledwidth;
    
        init_platform();
    
        print("Hello World
    
    ");
        XGpio_Initialize(&GpioOutput, XPAR_AXI_GPIO_0_DEVICE_ID); //initialize GPIO IP
        XGpio_SetDataDirection(&GpioOutput, 1, 0x0); //set GPIO as output
        XGpio_DiscreteWrite(&GpioOutput, 1, 0x0); //set GPIO output value to 0
    
        while (1)
        {
            for (Ledwidth = 0x0; Ledwidth < 4; Ledwidth++)
            {
                XGpio_DiscreteWrite(&GpioOutput, 1, 1 << Ledwidth);
                for (Delay = 0; Delay < 8000000; Delay++);
                XGpio_DiscreteClear(&GpioOutput, 1, 1 << Ledwidth);
            }
        }
        cleanup_platform();
        return 0;
    }
  • 相关阅读:
    20180929 北京大学 人工智能实践:Tensorflow笔记02
    20180929 北京大学 人工智能实践:Tensorflow笔记01
    YOLOv3学习笔记
    编辑器上传漏洞
    IIS解析漏洞利用
    数据库备份及审查元素进行webshell上传
    burp suite 进行webshell上传
    BUGKU CFT初学之WEB
    CTFbugku--菜鸟初学
    理解PHP中的会话控制
  • 原文地址:https://www.cnblogs.com/shuqingstudy/p/9154427.html
Copyright © 2011-2022 走看看