代码搜索:LED显示

找到约 10,000 项符合「LED显示」的源代码

代码结果 10,000
www.eeworm.com/read/259050/4348021

c led.c

/***************************************************** * 文件名称: * led.c * 文件说明:显示的时候首先设置要显示的内容 * 然后使能相应的LED * *****************************************************/ #ifnd
www.eeworm.com/read/258246/4358020

h led.h

//led.h void Delay (unsigned long a); // init led port void LedInit(void); // single blink void LedBlink(void); // turn on led void LedOn(void); // turn off led void LedOff(void);
www.eeworm.com/read/258246/4358026

c led.c

#include #include "led.h" void Delay (unsigned long a) { // 简单延时 while (--a!=0); } void LedInit(void) { // 初始化led端口 IO0DIR_bit.P0_31 = 1; // port0.31设为输出,LED }
www.eeworm.com/read/258246/4358037

h led.h

//led.h // init led port void LedsInit(void); // single blink led 1 void Led1Blink(void); void Led1BlinkSlow(void); // turn on led 1 void Led1On(void); // turn off led 1 void Led1Off(void
www.eeworm.com/read/258246/4358041

c led.c

//led.c #include #include "led.h" void Delay (unsigned long a) { // 简单延时 while (--a!=0); } void LedsInit(void) { // 初始化led端口 IO0DIR_bit.P0_31 = 1; // port0.12设为输出
www.eeworm.com/read/257758/4360896

lis led.lis

.module LED.C .area text(rom, con, rel) 0000 .dbfile C:\DOCUME~1\Administrator\桌面\张军\AVR\AVR单片机系统开发实例稿\第二章\第二章程序\跑马灯设计\LED.C 0000
www.eeworm.com/read/257758/4360898

s led.s

.module LED.C .area text(rom, con, rel) .dbfile C:\DOCUME~1\Administrator\桌面\张军\AVR\AVR单片机系统开发实例稿\第二章\第二章程序\跑马灯设计\LED.C .dbfunc e DelayMs _DelayMs fV ; j -> R20,R21 ;
www.eeworm.com/read/257758/4360901

c led.c

//******************************FileName: LED.C******************************// //******************************ICCAVR V6.30编译****************************// #include //头文件,AT
www.eeworm.com/read/257758/4360902

o led.o

XL H 1 areas 5 global symbols M LED.C S push_gset1 Ref0000 S pop_gset1 Ref0000 A text size DA flags 0 dbfile C:\DOCUME~1\Administrator\桌面\张军\AVR\AVR单片机系统开发实例稿\第二章\第二章程序\跑马灯设计\LED.C dbfunc e Del
www.eeworm.com/read/257632/4362512

c led.c

/* * (C) Copyright 2004, Psyent Corporation * Scott McNutt * * See file CREDITS for list of people who contributed to this * project. * * This program is f