代码搜索结果
找到约 10,000 项符合
LED 的代码
led.c
#include "config.h"
#include "lib.h"
void led_on(unsigned int led)
{
GPFDAT ^= led;
}
void led_off(unsigned int led)
{
GPFDAT |= led;
}
void led_blink(unsigned int led, unsigned long
led.1
V 51
K 189038755400 led
|R 17:41_10-19-05
Y 1
D -10 0 50 20
Z 10
i 2
U 0 0 9 0 3 0 DEVICE=LED
U 0 0 9 0 3 0 PARTS=1
U 0 0 0 0 3 0 SOURCE_PATH
U 5 -10 9 0 3 3 VALUE
U 0 0 9 0 3 0 PINORDER=2
led.asm
.sect ".vectors"
b start
.text
.include "x24x_app.h"
.global start
start:
ldp #0e0h
splk #6fh,WDCR
splk #5555h,WDKEY
splk #0AAAAh,WDKEY
loop_main
ldp #0
splk #1,60h
out 60h,
led.pjt
; Code Composer Project File, Version 2.0 (do not modify or remove this line)
[Project Settings]
ProjectDir="E:\CCS\Lab5-Led\"
ProjectType=Executable
CPUFamily=TMS320C24XX
Tool="Compiler"
Tool
led.map
******************************************************************************
TMS320C1x/C2x/C2xx/C5x COFF Linker Version 7.00
******************************************
led.mak
/************* Code Composer V1 Project Data ********************
The following section contains data generated by Code Composer
to store project information like build options, source filenames
led.cmd
MEMORY
{
PAGE 0:
VECS : o= 00h, l=40h
SRAM : o=40h,l=0ffc0h
PAGE 1:
DRAM : o=8000h,l=8000h
}
SECTIONS
{
.vectors: {}> VECS PAGE 0
.text : {}> SRAM PAGE 0
}