代码搜索结果
找到约 10,000 项符合
UART 的代码
uart_if.bsf
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to
uart.v
/******************************************************************************
*
* File Name: uart.v
* Version: 1.1
* Date: January 22, 2000
* Model: Uart Chip
* Depe
uart_if.v
`timescale 1 ns / 1 ns
module uart_if(clk,rst_n,txd,rxd,data_out,data_in);
input clk,rst_n,rxd;
input[7:0] data_in;
output txd;
output[7:0] data_out;
reg [7:0] data_out;
reg [7
uart.h
//uart header file
#ifdef UART_G
#define uart_ext
#else
#define uart_ext extern
#endif
#define printf UartPrintf
#define Uart_Printf UartPrintf
#define Uart_SendByte UartSen
uart.c
/*---------------------------------------------------------------------------------
Project : Test for 2410
Author : Kreal@163.net
Creation Date : 04-04-15
Revision
uart.h
//uart header file
#ifdef UART_G
#define uart_ext
#else
#define uart_ext extern
#endif
#define printf UartPrintf
#define Uart_Printf UartPrintf
#define Uart_SendByte UartSen