代码搜索:如何学习 UART?

找到约 10,000 项符合「如何学习 UART?」的源代码

代码结果 10,000
www.eeworm.com/read/267230/11189112

c uart.c

/* ***************************************************************************** * * $RCSfile: $ * $Revision: $ * * This module provides interface routines to the LPC ARM UARTs. * Copyrigh
www.eeworm.com/read/267230/11189117

o uart.o

www.eeworm.com/read/412586/11191182

tb uart.tb

LIBRARY ieee; USE ieee.std_logic_1164.ALL; USE ieee.std_logic_unsigned.ALL; USE ieee.std_logic_arith.ALL; ENTITY TestBench IS END TestBench; ARCHITECTURE HTWTestBench OF TestBench IS COMPONENT ua
www.eeworm.com/read/412586/11191184

v uart.v

/******************************************************************* * * DESCRIPTION: UART top level module implements full duplex UART function. * * AUTHOR: Thomas Oelsner * * HI
www.eeworm.com/read/412586/11191189

vhd uart.vhd

--/******************************************************************* -- * -- * DESCRIPTION: UART top level module implements full duplex UART function. -- * -- * AUTHOR: Jim Jian -- * -
www.eeworm.com/read/412586/11191196

tf uart.tf

/******************************************************************* * * DESCRIPTION: UART test-fixture * * AUTHOR: Thomas Oelsner * * HISTORY: 10/04/96, * * DESCRIPTION:
www.eeworm.com/read/412376/11202012

h uart.h

#ifndef _UART_h_ #define _UART_h_ #define FREQ_OSC 1000000L //定义系统时钟频率 #define BAUD 9600L //定义波特率 #define SPEED _high_ #if SPEED == _high_ #define UBRR_COUNT FREQ_OSC/8L/BAUD - 1
www.eeworm.com/read/412376/11202015

c uart.c

#define ENABLE_BIT_DEFINITIONS #include #include "UART.h" #define FRAMING_ERROR (1
www.eeworm.com/read/266612/11216893

o uart.o

www.eeworm.com/read/266612/11216913

h uart.h

char getc(void); void sendc(char); void uart_send(char*); void uart_receive(char *); char do_getc(unsigned long int ,int *); void uart_send_ii(int , char **);