代码搜索:UART 有哪些应用?

找到约 10,000 项符合「UART 有哪些应用?」的源代码

代码结果 10,000
www.eeworm.com/read/249840/12466867

vhd uart.vhd

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

tf uart.tf

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

cpp uart.cpp

#include "LPC213XDEF.h" #include "uart.h" extern "C" void IRQ_UART0 (void) __irq; UartObj::UartObj(void) { Init(); } void UartObj::Init(void) { unsigned int Fdiv; TxCount = 0; R
www.eeworm.com/read/249707/12478634

h uart.h

#ifndef __IAPUART_H #define __IAPUART_H class UartObj; #define Fosc 11059200 //Crystal frequence,10MHz~25MHz,should be the same as actual status. //应当与
www.eeworm.com/read/249707/12478640

o uart.o

www.eeworm.com/read/249654/12482026

v uart.v

//Legal Notice: (C)2005 Altera Corporation. All rights reserved. Your //use of Altera Corporation's design tools, logic functions and other //software and tools, and its AMPP partner logic function
www.eeworm.com/read/249652/12482659

v uart.v

//Legal Notice: (C)2005 Altera Corporation. All rights reserved. Your //use of Altera Corporation's design tools, logic functions and other //software and tools, and its AMPP partner logic function
www.eeworm.com/read/249531/12489709

apj uart.apj

www.eeworm.com/read/335900/12490954

h uart.h

/* 定义串口模式设置数据结构 */ typedef struct UartMode { uint8 datab; // 字长度,5/6/7/8 uint8 stopb; // 停止位,1/2 uint8 parity; // 奇偶校验位,0为无校验,1奇数校验,2为偶数校验 }UARTMODE
www.eeworm.com/read/335900/12490956

c uart.c

#include "config.h" #include "uart.h" uint8 rcv_buf[8]; // UART0数据接收缓冲区 volatile uint8 rcv_new; // 接收新数据标志 /* ********************************************************************