代码搜索:LED
找到约 10,000 项符合「LED」的源代码
代码结果 10,000
www.eeworm.com/read/252116/12301934
paf led.paf
www.eeworm.com/read/252116/12301944
pjt led.pjt
; Code Composer Project File, Version 2.0 (do not modify or remove this line)
[Project Settings]
ProjectName="led"
ProjectDir="D:\a\led\"
ProjectType=Executable
CPUFamily=TMS320C54XX
Tool="Com
www.eeworm.com/read/252116/12301949
map led.map
******************************************************************************
TMS320C54x COFF Linker PC Version 3.83
*******************************************************
www.eeworm.com/read/252116/12301954
c led.c
ioport unsigned int port0;
main()
{
int i;
for(;;)
{
port0=0x55;
for(i=0;i
www.eeworm.com/read/252116/12301957
cmd led.cmd
-w
-heap 400h
-stack 400h
-l rts.lib
MEMORY
{
PAGE 0:
IPRAM : o=0x0100,l=0x2000
PAGE 1:
IDRAM : o=0x2000,l=0x2000
}
SECTIONS
{
.text :>IPRAM PAGE 0
.data :>IPRAM PAGE 0
www.eeworm.com/read/252116/12301977
cmd led.cmd
-w
-stack 400h
-heap 100
-l rts.lib
MEMORY
{
PAGE 0:
VECT : o=80h,l=80h
PRAM : o=100h,l=1f00h
PAGE 1:
DRAM : o=2000h,l=1000h
}
SECTIONS
{
.text : {}> PRAM
www.eeworm.com/read/252116/12301986
c led.c
#define SPSA0 *(unsigned int *)0x38
#define SPSD0 *(unsigned int *)0x39
#define TIM *(int *)0x24
#define PRD *(int *)0x25
#define TCR *(int *)0x26
#define IMR *(int *)0x0
#define
www.eeworm.com/read/150249/12302315
h led.h
/*
* led.h -- demo of LED application
*
* Author: li ming
* Date: 2003-11-1
* Copyright: AKA Embedded Open Lab
*/
/*****************************
www.eeworm.com/read/150158/12308495
c led.c
//串行驱动led显示,
//一个74hc595位移寄存器驱动三极管驱动led位,
//两个74hc595驱动led段,方式位5位x8段x2=10个数码管
//5分频,每次扫描时间位1.25ms
//定义特殊符号
#define nul 0xf
#define qc 0xc
#define qb 0xb
#define q_ 0xa
#define q__ 0xd
www.eeworm.com/read/150153/12308926
vhd led.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity led is
port(din: in std_logic_vector(3 downto 0);
dout: out std_logic_vector(6 downto 0));
end led;
archit