XILINX ZYNQ 7000 UART EMIO 串口IO扩展

当需要使用到PL端的IO口用作串口的时候可以使用EMIO对UART的引脚进行扩展
这里使用UART1 进行EMIO扩展
在这里插入图片描述
EMIO本质上是属于PL FPGA的资源所以需要进行综合然后再指定管脚
在这里插入图片描述
在这里插入图片描述
然后把UART1,TX RX做外部引脚
在这里插入图片描述
生成bit流文件,然后导入到SDK
创建一个API,方便初始化自己的串口

#include "xuartps.h"

XUartPs Uart_Ps2;
u8 HelloWorld[] = "Hello World UART22";
int uart_init(u16 DeviceId,XUartPs uart_ins)
{


    int SentCount = 0;
    int Status;
    XUartPs_Config *Config;

    /*
     * Initialize the UART driver so that it's ready to use
     * Look up the configuration in the config table and then initialize it.
     */
    Config = XUartPs_LookupConfig(DeviceId);
    if (NULL == Config) {
        return XST_FAILURE;
    }

    Status = XUartPs_CfgInitialize(&uart_ins, Config, Config->BaseAddress);
    if (Status != XST_SUCCESS) {
        return XST_FAILURE;
    }

    XUartPs_SetBaudRate(&uart_ins, 115200);

    while (SentCount < (sizeof(HelloWorld) - 1)) {
        /* Transmit the data */
        SentCount += XUartPs_Send(&uart_ins,
                       &HelloWorld[SentCount], 1);
    }

    return SentCount;
    
    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值