readme.txt

来自「在fpga上关于nios开发版的测试文件」· 文本 代码 · 共 56 行

TXT
56
字号
/******************************************************************************
 *
 * Description
 * ************* 
 * A program which provides a means to test most of the devices on a Nios
 * Development Board.  The devices covered in this test are, as follows:
 *  - Seven Segment Display
 *  - The D0-D7 LEDs (located just under the FPGA on most Development boards).
 *      The classic "walking" LED will be displayed on these LEDs.
 *  - UART test 
 *      Tests UART functionality for the UART defined as STDOUT.
 *      * Currently, only tested on the JTAG UART device.
 *  - The LCD Display
 *      Displays a short message on the LCD Display.
 *  - Buttons/Switches (SW0-SW3 on the Development boards, located right
 *    under the FPGA.
 *      This detects button presses, in a tight loop, and returns any
 *      non-zero value.  
 *  
 * Requirements
 * **************
 * This program requires the following devices to be configured:
 *   an LED PIO named 'led_pio',
 *   a Seven Segment Display PIO named 'seven_seg_pio',
 *   an LCD Display named 'lcd_display',
 *   a Button PIO named 'button_pio',
 *   a JTAG connection (to test the JTAG UART functionality)
 *
 * Known Issues
 * **************
 * If this design is run on the ISS, terminal output will take several 
 * minutes per iteration.
 * The Button/Switch test (menu item 'c') can only be run once. Any subsequent 
 * attempts will cause a crash.
 * 
 * Peripherals Exercised by SW
 * *****************************
 * LEDs
 * Seven Segment Display
 * LCD
 * Buttons (SW0-SW3)
 * JTAG UART
 * 
 * Software Files
 * ****************
 * board_diag.c - This file.
 *    - Implements a top level menu allowing the user to choose which 
 * board components to test.
 * 
 * board_diag.h
 *    - A file containing the common includes and definitions for
 * use within this code.
 * 
 * 
 */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?