代码搜索结果
找到约 10,000 项符合
LED Matrix 的代码
led.dbg
IMAGECRAFT DEBUG FORMAT
VERSION 1.2
CPU AVR
FRAMEPOINTER Y
DIR D:\AVR单片机学习资料\LED来回循环闪烁\
FILE led.c
FUNC Delay 6A fV
BLOCK 6 6A
DEFREG a 16 i
DEFREG b 18 i
LINE 6 6A
LINE 9 6A
LINE 10 70
L
led.c
#include
#include
/* This seems to produce the right amount of delay for the LED to be seen */
void Delay()
{
unsigned int a, b;
for (a = 1; a
led.pjt
; Code Composer Project File, Version 2.0 (do not modify or remove this line)
[Project Settings]
ProjectDir="c:\icetek-vc5509-edulab\lab0301-led\"
ProjectType=Executable
CPUFamily=TMS320C55XX
T
led.c
#include "myapp.h"
// 定义指示灯寄存器地址和寄存器类型
#define LBDS (*((unsigned int *)0x400001))
// 子程序接口
void Delay(unsigned int nDelay); // 延时子程序
main()
{
unsigned int uLED[4]={1,2,4,8}; // 控制字,逐位置1:
led.pjt
; Code Composer Project File, Version 2.0 (do not modify or remove this line)
[Project Settings]
ProjectDir="C:\ICETEK-VC5509-EDULab\Lab0307-Bootloader\"
ProjectType=Executable
CPUFamily=TMS320C
led.c
#include "myapp.h"
// 定义指示灯寄存器地址和寄存器类型
#define LBDS (*((unsigned int *)0x400001))
// 子程序接口
void Delay(unsigned int nDelay); // 延时子程序
main()
{
unsigned int uLED[4]={1,2,4,8}; // 控制字,逐位置1:
led.c
/*******************************************************
* File Name: led.c
* Description: timing interrupt
* Author:
* Date:
*******************************************************/
led.c
/*************************************************************************/
// ---------------
// LED显示摇棒
// ---------------
//
// 本设计版权归作者所有,请勿擅自用于商业目的,转载请注明作者及出处
/***************************