代码搜索:UART
找到约 10,000 项符合「UART」的源代码
代码结果 10,000
www.eeworm.com/read/457142/7333614
lst uart.lst
__start:
__text_start:
0041 E5CF LDI R28,0x5F
0042 E0D4 LDI R29,4
0043 BFCD OUT P3D,R28
0044 BFDE OUT P3E,R29
0045 51C0 SUBI R28,0x10
0046 40D0
www.eeworm.com/read/457142/7333615
mak uart.mak
CC = iccavr
CFLAGS = -IC:\icc\include\ -e -DATMEGA -l -g -Mavr_enhanced
ASFLAGS = $(CFLAGS) -Wa-g
LFLAGS = -LC:\icc\lib\ -m -g -ucrtatmega.o -dram_end:0x45f -bdata:0x60.0x45f -bfunc_lit:0x60.0
www.eeworm.com/read/457142/7333616
c uart.c
#include
#include
#define uchar unsigned char
#define uint unsigned int
#define mclk 8000000
#pragma interrupt_handler uart_rx:12
uchar rdata=1,flag=0;
#pragma dat
www.eeworm.com/read/457142/7333618
cof uart.cof
www.eeworm.com/read/457142/7333619
o uart.o
XL
H 6 areas F global symbols
M uart.c
S push_gset2 Ref0000
S push_gset3 Ref0000
S div32s Ref0000
S lsl8 Ref0000
S pop_gset2 Ref0000
S pop_gset3 Ref0000
A text size 132 flags 0
dbfile D:\che
www.eeworm.com/read/457142/7333620
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/457142/7333621
dbg uart.dbg
VERSION 1.0
CPU AVR
DIR D:\chengxu\lesson10_1\
FILE uart.c
FUNC show C4 fV
BLOCK 13 CC
DEFREG y 20 c
DEFREG x 22 c
LINE 13 CC
LINE 13 CC
LINE 14 D2
LINE 15 D6
LINE 16 EC
LINE 17 EE
LINE
www.eeworm.com/read/457142/7333623
s uart.s
.module uart.c
.area vector(rom, abs)
.org 44
jmp _uart_rx
.area data(ram, con, rel)
_rdata::
.blkb 1
.area idata
.byte 1
.area data(ram, con, rel)
.dbfile D:\chengxu\lesson10_1\ua