代码搜索结果
找到约 10,000 项符合
LED Matrix 的代码
led.lst
__start:
__text_start:
002A E5CF LDI R28,0x5F
002B E0D4 LDI R29,4
002C BFCD OUT 0x3D,R28
002D BFDE OUT 0x3E,R29
002E 51CE SUBI R28,0x1E
002F 40D
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:\icc\examples.avr\LED\led.c
0000 .dbfunc e Delay _Delay
led.src
led.c
led.mak
CC = iccavr
CFLAGS = -IC:\icc\include\ -e -DATMEGA -DATMega16 -l -g -Mavr_enhanced
ASFLAGS = $(CFLAGS) -Wa-g
LFLAGS = -LC:\icc\lib\ -g -ucrtatmega.o -bfunc_lit:0x54.0x4000 -dram_end:0x45f -bda
led._c
#include
#include
/* This seems to produce the right amount of delay for the LED to be
* seen
*/
void Delay()
{
unsigned char a, b;
for (a = 1; a; a++)
for (b
led.dbg
IMAGECRAFT DEBUG FORMAT
VERSION 1.1
CPU AVR
DIR C:\icc\examples.avr\LED\
FILE led.c
FUNC Delay 96 fV
BLOCK 8 96
DEFREG a 16 c
DEFREG b 18 c
LINE 8 96
LINE 11 96
LINE 12 9A
LINE 13 9E
LINE
led.c
#include
#include
/* This seems to produce the right amount of delay for the LED to be
* seen
*/
void Delay()
{
unsigned char a, b;
for (a = 1; a; a++)
for (b
led.c
/*****************************************************
* 文件名称:
* led.c
* 文件说明:显示的时候首先设置要显示的内容
* 然后使能相应的LED
*
*****************************************************/
#ifnd
led.c
/*****************************************
NAME: led.c
DESC: Led test
WWW.YCTEK.COM
*****************************************/
#include "def.h"
#include "option.h"
#include "2410addr.h"