SDK代码记录

Posted shuqingstudy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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;
}

 

以上是关于SDK代码记录的主要内容,如果未能解决你的问题,请参考以下文章

Android 逆向Android 进程注入工具开发 ( Visual Studio 开发 Android NDK 应用 | Visual Studio 中 SDK 和 NDK 安装位置 )(代码片段

CSP核心代码片段记录

discuz X3.1 源代码阅读,记录代码片段

记录C#常用的代码片段

片段创建的 Intent 不会触发 onNewIntent

SDK代码记录