• 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;
    }
  • 相关阅读:
    ES6箭头函数中this的指向问题
    不借助vue-cli,自行构建一个vue项目
    Vue组件props选项-实现父子组件动态数据绑定
    Linux 基本操作命令
    Javascript
    ES6
    利用Gulp和Webpack进行项目自动化构建
    自定义View实现图片热区效果
    新年学习计划
    Activity跳转通过EventBus传值问题
  • 原文地址:https://www.cnblogs.com/shuqingstudy/p/9154427.html
Copyright © 2020-2023  润新知