代码搜索结果
找到约 10,000 项符合
UART 的代码
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.hex
:140000000C942A00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF32
:14001400FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEC
:14002800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD8
:14003C00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
uart.prj
[Compiler Options]
Edit1=E:\icc\include\;E:\icc\mycode\007
Edit2=E:\icc\lib\
Edit8=E:\icc\mycode\007\
CheckBox1=1
CheckBox2=1
Edit3=
Edit4=
Edit11=20
Edit13=
ComboBox1=2
Edit9=0x8000
Edit1
uart.src
[Files]
001.c
[Headers]
[Documents]
uart.c
/*
*Module: Uart.C 串口程序
*Programed by: ZHI-XIONG PENG
*Programed on: Date: 2004-12-22 18:11
*Modified by:
*Modified on: Date:
*Copyright (c) LONGFLY SHAOGUAN Inc. All rights reserved
*
uart.h
/*
*Module: Uart.h 串口程序
*Programed by: ZHI-XIONG PENG
*Programed on: Date: 2004-12-22 18:11
*Modified by:
*Modified on: Date:
*Copyright (c) LONGFLY SHAOGUAN Inc. All rights reserved
*
uart.h
#ifndef UART_H
#define UART_H
/************************************************************************
Title: Interrupt UART library with receive/transmit circular buffers
Author: Peter Fl
uart.c
/*************************************************************************
Title: Interrupt UART library with receive/transmit circular buffers
Author: Peter Fleury http://
uart.h
#ifndef _UART_H
#define _UART_H
void UartSetBaud(U32 ch, U32 baud);
char UartGetch(U32 ch);
char UartGetkey(U32 ch);
void UartPutch(U32 ch, U32 data);
void UartPuts(U32 ch, char *pt);
void Ua