代码搜索:如何学习 UART?
找到约 10,000 项符合「如何学习 UART?」的源代码
代码结果 10,000
www.eeworm.com/read/172177/9721946
dbg uart.dbg
IMAGECRAFT DEBUG FORMAT
VERSION 1.1
CPU AVR
DIR D:\AVR源程序\IccAVR\UartTest\
FILE uart.c
FUNC cpu_init A4 fV
BLOCK 18 A4
LINE 18 A4
LINE 19 A4
LINE 20 A6
LINE 21 AA
BLOCKEND 0 AE
FUNCEND AE
www.eeworm.com/read/172177/9721951
s uart.s
.module uart.c
.area text(rom, con, rel)
.dbfile D:\AVR源程序\IccAVR\UartTest\uart.c
.dbfunc e cpu_init _cpu_init fV
.even
_cpu_init::
.dbline -1
.dbline 18
; /****************************
www.eeworm.com/read/172047/9725231
h uart.h
/******************************************************************************
*
* $RCSfile: $
* $Revision: $
*
* This module provides the interface definitions for for uart.c
* Copyright
www.eeworm.com/read/172047/9725247
c uart.c
/******************************************************************************
*
* $RCSfile: $
* $Revision: $
*
* This module provides interface routines to the LPC ARM UARTs.
* Copyright
www.eeworm.com/read/367801/9731664
rc uart.rc
# Begin Project
# Begin SubItem "UART Resources"
# End SubItem
# End Project
www.eeworm.com/read/367801/9731682
h uart.h
#ifndef __UART_H__
#define __UART_H__
// write your header here
#endif
www.eeworm.com/read/367724/9735537
h uart.h
extern void UARTxInit(uint8 Int_UARTx,uint32 bps);
extern void UARTxSendByte(uint8 Int_UARTx,uint8 data);
extern void UARTxSendStr(uint8 Int_UARTx,char *str);
extern char UARTx_RecvByte(uint8 I
www.eeworm.com/read/367724/9735539
c uart.c
/****************************************************************************
* 文 件 名:UART.c
* 功 能:使用ADC模块的通道0、1进行电压的测量,然后将转换结果从串口输出,
如果同时用到两个串口,先运行UARTxInit(1,uint32 bps),
再运行UARTxInit(0
www.eeworm.com/read/367697/9736297