代码搜索:如何学习 UART?
找到约 10,000 项符合「如何学习 UART?」的源代码
代码结果 10,000
www.eeworm.com/read/392952/8318126
h 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
www.eeworm.com/read/292893/8326982
h uart.h
#ifndef __UART_C__
#define __UART_C__
#include "my_type.H"
void InitUART(void);
void SendToComport(uint8);
void Prints(uint8 *,uint8);
void PrintLongInt(uint32);
void PrintLongIntHex(ui
www.eeworm.com/read/292893/8327008
c uart.c
/******************************************************************
本程序只供学习使用,未经作者许可,不得用于其它任何用途
我的邮箱:computer-lov@tom.com
欢迎访问我的blog: http://computer00.21ic.org
UART.C file
www.eeworm.com/read/292893/8327011
lst uart.lst
C51 COMPILER V7.06 UART 03/23/2007 23:58:30 PAGE 1
C51 COMPILER V7.06, COMPILATION OF MODULE UART
OBJECT MODULE PLACED IN UA
www.eeworm.com/read/292893/8327024
obj uart.obj
www.eeworm.com/read/292724/8337857
bsf 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
www.eeworm.com/read/292724/8338094
v uart.v
/******************************************************************************
*
* File Name: uart.v
* Version: 1.1
* Date: January 22, 2000
* Model: Uart Chip
* Depe
www.eeworm.com/read/292724/8338103
v 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
www.eeworm.com/read/392524/8338222
o uart.o
www.eeworm.com/read/392524/8338224