6713的二级引导的具体实现,不使用flashburn,通过建立两个工程的方法。对flash在线烧写。简单灵活。
2019-12-21 21:00:57 114KB dsp6713 固化 flash引导
1
用于DSP 6713的i2c访问代码 对于初学者是非常实用的例子哦
2019-12-21 20:31:29 37KB i2c
1
TMS320C6713配置代码,适合初学者
2019-12-21 20:30:22 12.67MB DSP6713
1
于博士关于cadence15.7学习视频,相信初学者是需要的,推荐给大家
2019-12-21 20:30:18 3.39MB 视频配套资料
1
DSP6713的软件和硬件资料,详细的开发板资料,详细的接口编程
2019-12-21 20:23:03 2.39MB DSP6713 软件硬件
1
基于DSP6713的导航接收机硬件平台设计和实现
1
图像数字化、增强、几何变换、图像恢复、图像重建、图像隐藏、图像变换,CSL层次概述、命名规则、数据类型、CSL函数、初始化外设等.
2019-12-21 19:48:51 6KB CS L源代码
1
合众达DSP6713全部源码 包含所有的测试
2019-12-21 19:48:06 12.35MB DSP6713
1
/********************************************************************************\ \* DEC6713_FLASH.c V2.00 *\ \* Copyright 2004 by SEED Electronic Technology LTD. *\ \* All rights reserved. SEED Electronic Technology LTD. *\ \* Restricted rights to use, duplicate or disclose this code are *\ \* granted through contract. *\ \* Designed by: Hongshuai.Li \* Discription: Erase, write and read the whole chip. \* Date: Modified 05.10.2005 *\ \********************************************************************************/ #include #include #include #include #include #include #include "DEC6713_FLASH.h" #include /********************************************************************************/ Uint32 i; Uint16 TempData; Uint32 Src_StartAdd; Uint32 Dst_StartAdd; extern far void vectors(); /********************************************************************************/ /********************************************************************************/ void main() { Src_StartAdd = 0x90000000; /* Initialize CSL, must when using. */ CSL_init(); /* Initialize DEC6713 board. */ DEC6713_init(); /* Configure interrupt. */ IRQ_setVecs(vectors); IRQ_nmiEnable(); IRQ_globalEnable(); /* Erase flash memory. */ Flash_Erase(0x90000000,0x10); printf("\nErase flash ok."); /* Write flash memory. */ for(i=0;i<0x40000;i++) { Flash_Writes(Src_StartAdd+2*i,fmod(i,0x10000)); } printf("\nWrite flash ok."); /* Read flash memory. */ for(i=0;i<0x40000;i++) { TempData = Flash_Reads(Src_StartAdd+2*i); if(TempData != fmod(i,0x10000)) { printf("\n Testing is Failure!"); printf("\nAddress 0x%x is error!",i); exit(0); } } printf("\nOpereation i
2019-12-21 19:26:21 5KB DSP6713例程 FLASH
1