资源简介
合众达DSP6713全部源码
包含所有的测试
代码片段和文件信息
/*******************************************************************************
*
* Borrowed from earlier work done by souls
* braver than mine....
*
* Originally this was the blink program example
* but I modified it a little to remove the audio
* portions and to make a slightly different blink
* pattern.
* Russ Heeschen TI Pittsburgh
*
* NOTES: Assumptions:
* 6713 DSK
* CPLD connected to CE1
* AMD29LV400BT flash connected to CE1
* SDRAM connected to CE0
*
*
*/
#include “c6713dsk.h“
#include “cpld.h“
#include “timer.h“
/* Main function initializes and loops blinking the LEDs
* (Not much of a surprise I suppose.)
*/
void main( void )
{
int i;
CSL_init();
/* DSP initialization */
IRQ_globalDisable();
for(i=0;i<32;i++)
{
IRQ_disable(i); /* Disable and clear all IRQ events */
IRQ_clear(i); /* except reset and NMI interrupts */
}
PLL_Init();
EMIF_Init();
TIMER_Init();
CPLD_LedOff( LED_ALL );
TIMER_DelayMsec( 100 );
CPLD_LedOn( LED_ALL );
TIMER_DelayMsec( 500 );
// Very simple Led test. Turn them all off then on
// one at a time then off one at a time.
CPLD_LedOff( LED_ALL );
for(;;)
{
for( i=0; i {
CPLD_LedOn( LED_0 << i );
TIMER_DelayMsec( 100 );
}
for( i=0; i {
CPLD_LedOff( LED_0 << i );
TIMER_DelayMsec( 100 );
}
TIMER_DelayMsec( 500 );
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3823739 2004-08-15 06:55 01. DSP\00. TMS320C6000 Library\TMS320C6000 Chip Support Library (V2.31.00.8).zip
文件 2583891 2004-08-15 06:55 01. DSP\00. TMS320C6000 Library\TMS320C6000 Chip Support Library API Reference Guide (Rev. J).pdf
文件 57544 2003-09-16 05:59 01. DSP\00. TMS320C6000 Library\TMS320C64x DSP Library (V1.02):Big Endian.pdf
文件 359553 2003-09-16 05:59 01. DSP\00. TMS320C6000 Library\TMS320C64x DSP Library (V1.02):Big Endian.zip
文件 928998 2003-09-30 05:58 01. DSP\00. TMS320C6000 Library\TMS320C64x DSP Library (V1.02):Examples Codes.zip
文件 287673 2003-09-30 05:58 01. DSP\00. TMS320C6000 Library\TMS320C64x DSP Library (V1.02):Examples Notes.pdf
文件 1018327 2003-11-14 06:58 01. DSP\00. TMS320C6000 Library\TMS320C64x DSP Library (V1.04).zip
文件 548948 2003-10-31 07:13 01. DSP\00. TMS320C6000 Library\TMS320C64x DSP Library Programmer‘s Reference (Rev. B).pdf
文件 917184 2003-11-04 06:59 01. DSP\00. TMS320C6000 Library\TMS320C64x Image Library (V1.04).zip
文件 853939 2003-03-05 09:14 01. DSP\00. TMS320C6000 Library\TMS320C64x Image_Video Processing Library (IMGLIB):Examples Codes.zip
文件 163071 2003-03-05 09:14 01. DSP\00. TMS320C6000 Library\TMS320C64x Image_Video Processing Library (IMGLIB):Examples Notes.pdf
文件 489693 2003-10-30 07:12 01. DSP\00. TMS320C6000 Library\TMS320C64x Image/Video Processing Library Programmer‘s Reference (Rev. B).pdf
文件 1657 2004-11-30 08:58 01. DSP\DEC6713_BOOT\bl
文件 276 2004-11-29 14:36 01. DSP\DEC6713_BOOT\boot.cmd
文件 808295 2004-11-29 18:07 01. DSP\DEC6713_BOOT\BOOT.hex
文件 955 2004-11-29 18:07 01. DSP\DEC6713_BOOT\BOOT.map
文件 5234 2005-01-31 11:40 01. DSP\DEC6713_BOOT\boot.obj
文件 19984 2004-11-29 17:52 01. DSP\DEC6713_BOOT\BOOT.out
文件 4608 2005-02-02 13:31 01. DSP\DEC6713_BOOT\boot1.cdd
文件 5433 2004-02-03 12:55 01. DSP\DEC6713_BOOT\boot_c671x.s62
文件 5506 2004-02-13 15:18 01. DSP\DEC6713_BOOT\boot_c671x_2.s62
文件 1192 2004-01-16 16:20 01. DSP\DEC6713_BOOT\c6713_emif.s62
文件 1566 2005-02-02 13:22 01. DSP\DEC6713_BOOT\cc_build_Debug.log
文件 4088 2004-11-30 09:00 01. DSP\DEC6713_BOOT\Debug\bl
文件 4088 2004-11-30 09:20 01. DSP\DEC6713_BOOT\Debug\boot.obj
文件 2363 2005-02-02 13:22 01. DSP\DEC6713_BOOT\Debug\boot_c671x_2.obj
文件 785 2005-02-02 13:22 01. DSP\DEC6713_BOOT\Debug\c6713_emif.obj
文件 3962 2004-11-29 11:04 01. DSP\DEC6713_BOOT\Debug\cpld.obj
文件 4770 2005-02-02 13:22 01. DSP\DEC6713_BOOT\Debug\DEC6713.obj
文件 11359 2005-02-02 13:22 01. DSP\DEC6713_BOOT\Debug\DEC6713_BOOT.map
............此处省略392个文件信息
- 上一篇:批量采集淘宝天猫的商品生成淘宝格式数据包免费版!
- 下一篇:全部IOS表情包
评论
共有 条评论