资源简介
DSP28335片内FLASH程序搬运到RAM中运行的方法,目的为了加快指令运算速度,两种不同的方法,一是将所有代码均搬运到RAM中运行,适合小工程项目,不必考虑各个函数功能;二是将必要的部分代码或函数搬运至RAM运行,适合代码量大的工程,两种方法均都详细介绍,DSP编程者必须掌握的技术!
代码片段和文件信息
// TI File $Revision: /main/6 $
// Checkin $Date: July 30 2007 14:16:01 $
//###########################################################################
//
// FILE: DSP2833x_SysCtrl.c
//
// title: DSP2833x Device System Control Initialization & Support Functions.
//
// DEscriptION:
//
// Example initialization of system resources.
//
//###########################################################################
// $TI Release: DSP2833x Header Files V1.00 $
// $Release Date: September 7 2007 $
//###########################################################################
#include “DSP2833x_Device.h“ // Headerfile Include File
#include “DSP2833x_Examples.h“ // Examples Include File
// Functions that will be run from RAM need to be assigned to
// a different section. This section will then be mapped to a load and
// run address using the linker cmd file.
//#pragma CODE_SECTION(InitFlash “ramfuncs“);
//---------------------------------------------------------------------------
// InitSysCtrl:
//---------------------------------------------------------------------------
// This function initializes the System Control registers to a known state.
// - Disables the watchdog
// - Set the PLLCR for proper SYSCLKOUT frequency
// - Set the pre-scaler for the high and low frequency peripheral clocks
// - Enable the clocks to the peripherals
void InitSysCtrl(void)
{
// Disable the watchdog
DisableDog();
// Initialize the PLL control: PLLCR and DIVSEL
// DSP28_PLLCR and DSP28_DIVSEL are defined in DSP2833x_Examples.h
InitPll(DSP28_PLLCRDSP28_DIVSEL);
// Initialize the peripheral clocks
InitPeripheralClocks();
}
//---------------------------------------------------------------------------
// Example: InitFlash:
//---------------------------------------------------------------------------
// This function initializes the Flash Control registers
// CAUTION
// This function MUST be executed out of RAM. Executing it
// out of OTP/Flash will yield unpredictable results
void InitFlash(void)
{
EALLOW;
//Enable Flash Pipeline mode to improve performance
//of code executed from Flash.
FlashRegs.FOPT.bit.ENPIPE = 1;
// CAUTION
//Minimum waitstates required for the flash operating
//at a given CPU rate must be characterized by TI.
//Refer to the datasheet for the latest information.
//Set the Paged Waitstate for the Flash
FlashRegs.FBANKWAIT.bit.PAGEWAIT = 3;
//Set the Random Waitstate for the Flash
FlashRegs.FBANKWAIT.bit.RANDWAIT = 3;
//Set the Waitstate for the OTP
FlashRegs.FOTPWAIT.bit.OTPWAIT = 5;
// CAUTION
//ONLY THE DEFAULT VALUE FOR THESE 2 REGISTERS SHOULD BE USED
FlashRegs.FSTDBYWAIT.bit.STDBYWAIT = 0x01FF;
FlashRegs.FACTIVEWAIT.bit.ACTIVEWAIT = 0x01FF;
EDIS;
//Force a pipeline flush to ensure that the write t
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 28160 2011-12-19 09:15 DSP28335片内FLASH程序搬运到RAM中运行方法.doc
文件 11882 2008-01-10 16:41 替换文件2011_12_18\DSP2833xxx_SysCtrl.c
文件 2711 2008-01-10 16:41 替换文件2011_12_18\DSP2833xxx_usDelay.asm
文件 3448 2008-03-05 14:19 替换文件2011_12_18\DSP28xxx_CodeStartBranch.asm
文件 7121 2008-03-05 14:20 替换文件2011_12_18\DSP28xxx_Section
文件 3323 2008-03-05 14:20 替换文件2011_12_18\DSP28xxx_Section
文件 7187 2008-03-05 14:21 替换文件2011_12_18\F2833x_nonBIOS_flash.cmd
目录 0 2011-12-19 09:12 替换文件2011_12_18
----------- --------- ---------- ----- ----
63832 8
- 上一篇:光立方制作(原理图 源程序 LED搭接方法
- 下一篇:基于52单片机的直流电压测量
相关资源
- 基于DSP28335的直流电机闭环调速
- 永磁同步电机无位置传感器DSP28335代码
- TIDSP28335CAN中文使用手册.pdf
- DSP28335的PMSM的SVPWM电机代码
- dsp28335各外设
- DSP28335串口二阶BOOT源码
- DSP28335中文手册
- 用于DSP28335的编程例程 主要是用于有
- DSP28335TI例程
- ucos ii 在DSP28335上的移植
- dsp28335数据手册 中文版
- ucos2.52在DSP28335上的移植程序,RAM版
- 基于DSP28335的SVPWM,CCS6.0
- dsp28335官方例程
- DSP28335 SYS/BIOS
- DSP28335控制单相逆变器双闭环控制程序
- TI dsp28335浮点运算库
- DSP28335+AD7656+CPLD完整PCB图4层板
- DSP28335最小系统原理图以及PCB文件
- DSP28335+AD7606 SVPWM 电路原理和PCB
- DSP28335开发攻略.pdf
- DSP28335-步进电机
- DSP28335例程以及手把手教你学DSP28335
- TMS320F28335DSP原理与开发编程
- 手把手教你学DSP2812书籍 配套资料光盘
- dsp28335最小系统原理图
- DSP28335做简单的频谱分析fft算法
- dsp28335的pwm程序
- AD7606基于DSP28335的SPI方式下的数据采集
- DSP28335定时器程序
评论
共有 条评论