📄 xuartlite_intr_tapp_example.c
字号:
#define TESTAPP_GEN
/* $Id: xuartlite_intr_tapp_example.c,v 1.1 2007/05/15 07:00:27 mta Exp $ */
/*****************************************************************************
*
* XILINX IS PROVIDING THIS DESIGN, CODE, OR INFORMATION "AS IS"
* AS A COURTESY TO YOU, SOLELY FOR USE IN DEVELOPING PROGRAMS AND
* SOLUTIONS FOR XILINX DEVICES. BY PROVIDING THIS DESIGN, CODE,
* OR INFORMATION AS ONE POSSIBLE IMPLEMENTATION OF THIS FEATURE,
* APPLICATION OR STANDARD, XILINX IS MAKING NO REPRESENTATION
* THAT THIS IMPLEMENTATION IS FREE FROM ANY CLAIMS OF INFRINGEMENT,
* AND YOU ARE RESPONSIBLE FOR OBTAINING ANY RIGHTS YOU MAY REQUIRE
* FOR YOUR IMPLEMENTATION. XILINX EXPRESSLY DISCLAIMS ANY
* WARRANTY WHATSOEVER WITH RESPECT TO THE ADEQUACY OF THE
* IMPLEMENTATION, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OR
* REPRESENTATIONS THAT THIS IMPLEMENTATION IS FREE FROM CLAIMS OF
* INFRINGEMENT, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE.
*
* (c) Copyright 2002-2006 Xilinx Inc.
* All rights reserved.
*
*******************************************************************************/
/******************************************************************************/
/**
*
* @file xuartlite_intr_tapp_example.c
*
* This file contains a design example using the UartLite driver and
* hardware device using the interrupt mode for transmission of data.
*
* This example works with a PPC processor. Refer the examples of Interrupt
* controller for an example of using interrupts with the MicroBlaze processor.
*
* @note
*
* None.
*
* <pre>
* MODIFICATION HISTORY:
*
* Ver Who Date Changes
* ----- ---- -------- -----------------------------------------------
* 1.00b sv 06/08/06 Created for supporting Test App Interrupt examples
* </pre>
******************************************************************************/
/***************************** Include Files *********************************/
#include "xparameters.h"
#include "xuartlite.h"
#include "xintc.h"
#ifdef __MICROBLAZE__
#include "mb_interface.h"
#else
#include "xexception_l.h"
#endif
/************************** Constant Definitions *****************************/
/*
* The following constants map to the XPAR parameters created in the
* xparameters.h file. They are defined here such that a user can easily
* change all the needed parameters in one place.
*/
#ifndef TESTAPP_GEN
#define UARTLITE_DEVICE_ID XPAR_RS232_UART_DEVICE_ID
#define INTC_DEVICE_ID XPAR_OPB_INTC_0_DEVICE_ID
#define UARTLITE_IRPT_INTR XPAR_OPB_INTC_0_RS232_UART_INTERRUPT_INTR
#endif
/*
* The following constant controls the length of the buffers to be sent
* and received with the UartLite device.
*/
#define TEST_BUFFER_SIZE 100
/**************************** Type Definitions *******************************/
/***************** Macros (Inline Functions) Definitions *********************/
/************************** Function Prototypes ******************************/
XStatus UartLiteIntrExample(XIntc *IntcInstancePtr,
XUartLite *UartLiteInstancePtr,
Xuint16 UartLiteDeviceId,
Xuint16 UartLiteIntrId);
static void UartLiteSendHandler(void *CallBackRef, unsigned int EventData);
static void UartLiteRecvHandler(void *CallBackRef, unsigned int EventData);
static XStatus UartLiteSetupIntrSystem(XIntc *IntcInstancePtr,
XUartLite *UartLiteInstancePtr,
Xuint16 UartLiteIntrId);
static void UartLiteDisableIntrSystem(XIntc *IntrInstancePtr,
Xuint16 UartLiteIntrId);
/************************** Variable Definitions *****************************/
/*
* The instances to support the device drivers are global such that the
* are initialized to zero each time the program runs.
*/
#ifndef TESTAPP_GEN
static XIntc IntcInstance; /* The instance of the Interrupt Controller */
static XUartLite UartLiteInst; /* The instance of the UartLite Device */
#endif
/*
* The following variables are shared between non-interrupt processing and
* interrupt processing such that they must be global.
*/
/*
* The following buffers are used in this example to send and receive data
* with the UartLite.
*/
Xuint8 SendBuffer[TEST_BUFFER_SIZE];
Xuint8 ReceiveBuffer[TEST_BUFFER_SIZE];
/*
* The following counter is used to determine when the entire buffer has
* been sent.
*/
static volatile int TotalSentCount;
/******************************************************************************/
/**
*
* Main function to call the UartLite interrupt example.
*
* @param None.
*
* @return XST_SUCCESS if successful, else XST_FAILURE.
*
* @note None
*
*******************************************************************************/
#ifndef TESTAPP_GEN
int main(void)
{
XStatus Status;
/*
* Run the UartLite Interrupt example , specify the Device ID that is
* generated in xparameters.h.
*/
Status = UartLiteIntrExample(&IntcInstance,
&UartLiteInst,
UARTLITE_DEVICE_ID,
UARTLITE_IRPT_INTR);
if (Status != XST_SUCCESS)
{
return XST_FAILURE;
}
return XST_SUCCESS;
}
#endif
/****************************************************************************/
/**
*
* This function does a minimal test on the UartLite device and driver as a
* design example. The purpose of this function is to illustrate how to use
* the XUartLite component.
*
* This function sends data and expects to receive the same data through the
* UartLite. The user must provide a physical loopback such that data which
* is transmitted will be received.
*
* This function uses the interrupt driver mode of the UartLite. The calls to
* the UartLite driver in the interrupt handlers, should only use the
* non-blocking calls.
*
* @param IntcInstancePtr is a pointer to the instance of the INTC component.
* @param UartLiteInstPtr is a pointer to the instance of UartLite component.
* @param UartLiteDeviceId is the Device ID of the UartLite Device and is the
* XPAR_<UARTLITE_instance>_DEVICE_ID value from xparameters.h.
* @param UartLiteIntrId is the Interrupt ID and is typically
* XPAR_<INTC_instance>_<UARTLITE_instance>_IP2INTC_IRPT_INTR
* value from xparameters.h.
*
* @return XST_SUCCESS if successful, otherwise XST_FAILURE.
*
* @note
*
* This function contains an infinite loop such that if interrupts are not
* working it may never return.
*
****************************************************************************/
XStatus UartLiteIntrExample(XIntc *IntcInstancePtr,
XUartLite *UartLiteInstPtr,
Xuint16 UartLiteDeviceId,
Xuint16 UartLiteIntrId)
{
XStatus Status;
Xuint32 Index;
/*
* Initialize the UartLite driver so that it's ready to use.
*/
Status = XUartLite_Initialize(UartLiteInstPtr, UartLiteDeviceId);
if (Status != XST_SUCCESS)
{
return XST_FAILURE;
}
/*
* Perform a self-test to ensure that the hardware was built correctly.
*/
Status = XUartLite_SelfTest(UartLiteInstPtr);
if (Status != XST_SUCCESS)
{
return XST_FAILURE;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -