Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Finally, as shown in the figure below, the mouse selects the red box 1, then clicks the right mouse button to appear the drop-down menu, and then selects the red box 2, refresh the copy action just now, so that the file just copied can be displayed in the IDE environment

...

main.c

int main(void)

{

    printf("Build @%s, %s\n", __DATE__, __TIME__);

    hw_init();

    sys_init();

    fbio_init();

    uart_ctl();

    disp_hdmi_init();

    uart_interrupt_init(); /*uart interrupt configure */

    sp_interrupt_setup(); /* system interrupt manager module init */

    printf("UART IP test ready ");

    while(1)

{

        unsigned int i;

        for (i = 0; i < 256; i++)

            {

               while   while(1)

                {

                   if   if((uart_reg->LSR&0x20)==0x20)

                  {

                     uart_reg->SER=0x3f;

                     uart_reg->TX_FIFO=i;

                     printf("@tx_data [%d]\n", i);

                     uart_reg->SER=0x3e;

                      break          break;

                   }

                }

            }

    }

}

对比数码管控制IP实验,增加了uartCompared with the digital tube control IP experiment, the uart_ctl () 函数,用来完成UART的配置及初始化操作,如下讲解。function is added to complete the configuration and initialization of the UART, as explained below.

void uart_ctl()

{

    uart_reg->LCR=0x20;

    printf("@LCR[%x]\n", temp);

    uart_reg->SER=0x3e;

    printf("@SER[%x]\n", temp);

    ///////////////// system clock is 65.057MHz//////65057000/16/buad//////

    uart_reg->BUAD_CNT=0x1A9; //9600

    printf("@BUAD_CNT[%x]\n", temp);

}实现UART控制IP的配置及初始化操作,如下:

Realize the configuration and initialization operation of UART control IP as follows:

uart_reg->LCR=0x20;设置UART 为8bit 数据位,1bit 停止位,无校验位;

Set UART to 8bit data bit, 1bit stop bit, no parity bit;

uart_reg->SER=0x3e;

设置UART 中断为:允许接收数据完成后产生中断;禁止发送数据完成后产生中断;禁止接收数据出现停止位,校验位错时产生中断;禁止接收数据FIFO满时产生中断;禁止发送数据FIFO空时产生中断;

uart_Set the UART interrupt to: allow interrupts to be generated after receiving data is complete; disable interrupts to be generated after data transmission is complete; prohibit stop bits from receiving data and generate interrupts when the check bit is wrong; disable interrupts when receiving data FIFO is full; Generate an interrupt;

uart_reg->BUAD_CNT=0x1A9;

设置UART 波特率为9600Set the UART baud rate to 9600;

下面介绍The following introduces while (1) loop

if((uart_reg->LSR&0x20)==0x20) : 判断接收数据FIFO为空Judge that the received data FIFO is empty

uart_reg->SER=0x3f; 禁止接收数据中断;Forbid receiving data interruption;

uart_reg->TX_FIFO=i; 将数据i送到TX Send data i to TX FIFO;

uart_reg->SER=0x3e;  允许接收数据完成后产生中断  Allow interrupt generation after receiving data

uart.c

#include "common_all.h"

#include "cache.h"

#include "sp_interrupt.h"

#define FPGA_EXT0_INT  (29)

#define FPGA_EXT1_INT  (30)

static unsigned int g_repeat_cnt = 0;

unsigned int rx_data;

void fpga_ext0_interrupt_control_mask(int enable)

void fpga_ext1_interrupt_control_mask(int enable)

static void fpga_ext0_isr_cfg()

static void fpga_ext1_isr_cfg()

void fpga_ext0_callback(void)

void fpga_ext1_callback(void)

void uart_interrupt_init ()

void fpga_ext1_test_init()

对比数码管控制IP实验的led.c,结构类似,不同的是中断处理程序不同,如下讲解Compared with the LED.c of the LED control IP experiment, the structure is similar, the difference is that the interrupt handler is different, as explained below

void fpga_ext0_callback(void)

{

    rx_data=uart_reg->RX_FIFO;

    printf("@rx_data [%d]\n", rx_data);

    uart_reg->LSR=0x0;

}此中断处理程序的作用:将RX FIFO收到的8bit数据取出;然后清除本次中断的状态标识bit,这样就完成了1byte数据的串行接收和发送实验。

The role of this interrupt handler: take the 8bit data received by the RX FIFO; then clear the status flag bit of this interrupt, so that the serial reception and transmission experiments of 1byte data are completed.

uart.h

#ifndef __FPGAINT_H__

#define __FPGAINT_H__

#define  #define  FBIO_BASE_ADDR 0x70000000

typedef struct uart_reg_s {

    unsigned long LCR;

    unsigned long SER;

    unsigned long BUAD_CNT;

    unsigned long LSR;

    unsigned long RX_FIFO;

    unsigned long TX_FIFO;

} uart_reg_t;

extern uart_reg_t *uart_reg;

void uart_interrupt_init ();

void fpga_ext1_test_init();

#endif // __FPGAINT_H__

定义了UART控制IP相关寄存器

程序代码运行

在Plus1 IDE环境中compile后,下载到平台,在terminal窗口看到如下信息Defined UART control IP related registers

Run Program code

After compile in the Plus1 IDE environment, download to the platform and see the following information in the terminal window

...