代码搜索结果
找到约 10,000 项符合
LED Matrix 的代码
led.mp
NOTE: AVR Code addresses are word addresses
All other addresses (including ones in FLASH) are byte addresses
Area Addr Size Decimal Bytes (Attributes)
----------
led.lis
.module led.c
.area text(rom, con, rel)
0000 .dbfile C:\DOCUME~1\alf\MYDOCU~1\开发板\调试程序\led\led.c
0000 .dbfunc e
led.mak
CC = iccavr
CFLAGS = -IC:\icc\include\ -e -l -g -Mavr_enhanced_small -Wa-W
ASFLAGS = $(CFLAGS) -Wa-g
LFLAGS = -LC:\icc\lib\ -g -Wl-W -bfunc_lit:0x26.0x2000 -dram_end:0x45f -bdata:0x60.0x45f -d
led._c
//ICC-AVR application builder : 2005-3-2 上午 11:46:11
// Target : M8
// Crystal: 11.059Mhz
#include
#include
void port_init(void)
{
PORTB = 0x00;
DDRB = 0xFF;
PORT
led.dbg
IMAGECRAFT DEBUG FORMAT
VERSION 1.1
CPU AVR
DIR C:\DOCUME~1\alf\MYDOCU~1\开发板\调试程序\led\
FILE led00.c
FUNC port_init 66 fV
BLOCK 12 66
LINE 12 66
LINE 13 66
LINE 14 6A
LINE 15 6E
LINE 16 70
led.src
[Files]
led00.c
[Headers]
[Documents]
led.dev
[Project]
FileName=led.dev
Name=led
UnitCount=1
Type=2
Ver=1
ObjFiles=
Includes=D:\Linux_kernel2.4.18_rel_hzh\include
Libs=
PrivateResource=
ResourceIncludes=
MakeIncludes=
Compiler=
CppC
led.h
extern void Led_Display();
extern void Disp_Init();
extern BYTE DispBuf[4];