代码搜索:UART 有哪些应用?
找到约 10,000 项符合「UART 有哪些应用?」的源代码
代码结果 10,000
www.eeworm.com/read/247809/12617881
s uart.s
.module UART.c
.area data(ram, con, rel)
_Rx_counter::
.blkb 1
.area idata
.byte 0
.area data(ram, con, rel)
.dbfile G:\猛\avr实践\UART\UART.c
.dbsym e Rx_counter _Rx_counter c
_Tx_count
www.eeworm.com/read/247809/12617884
mak uart.mak
CC = iccavr
CFLAGS = -IC:\icc\include\ -e -DATMEGA -l -g -Mavr_enhanced
ASFLAGS = $(CFLAGS) -Wa-g
LFLAGS = -LC:\icc\lib\ -g -ucrtatmega.o -bfunc_lit:0x8c.0x20000 -dram_end:0x10ff -bdata:0x100.
www.eeworm.com/read/247809/12617886
mp uart.mp
NOTE: AVR Code addresses are word addresses
All other addresses (including ones in FLASH) are byte addresses
Area Addr Size Decimal Bytes (Attributes)
----------
www.eeworm.com/read/247809/12617888
pwi uart.pwi
www.eeworm.com/read/334103/12634216
h uart.h
void Uart_Init(void);
unsigned char Uart_Receive(void);
void Uart_Transmit(unsigned char i);
www.eeworm.com/read/334103/12634241
lis uart.lis
.module uart.c
.area text(rom, con, rel)
0000 .dbfile E:\ICCAVR\project\AVRMEG~2\icc\019-TEST\uart.c
0000 .dbfu
www.eeworm.com/read/334103/12634308
c uart.c
#include "iom16v.h"
/*串口初始化函数*/
void Uart_Init(void) {
UCSRA = 0x02; /*倍速*/
UCSRB = 0x18; /*允许接收和发送*/
UCSRC = 0x06; /*8位数据*/
UBRRH = 0x00;
UBRRL = 12; /*9600*/
}
/*数据发送,查询方式*/
v
www.eeworm.com/read/334103/12634345
o uart.o
XL
H 1 areas 3 global symbols
M uart.c
A text size 26 flags 0
dbfile E:\ICCAVR\project\AVRMEG~2\icc\019-TEST\uart.c
dbfunc e Uart_Init 0 fV
dbline FFFFFFFF 0
dbline 4 0
dbline 5 0
dbline 6 4
www.eeworm.com/read/334103/12634399
s uart.s
.module uart.c
.area text(rom, con, rel)
.dbfile E:\ICCAVR\project\AVRMEG~2\icc\019-TEST\uart.c
.dbfunc e Uart_Init _Uart_Init fV
.even
_Uart_Init::
.dbline -1
.dbline 4
; #include "iom