资源简介
利用 TMS320F28335系列DSP,实现了基于液晶显示屏12864的显示工程
代码片段和文件信息
// TI File $Revision: /main/3 $
// Checkin $Date: March 16 2007 08:37:30 $
//###########################################################################
//
// FILE: DSP2833x_CpuTimers.c
//
// title: CPU 32-bit Timers Initialization & Support Functions.
//
// NOTES: CpuTimer1 and CpuTimer2 are reserved for use with DSP BIOS and
// other realtime operating systems.
//
// Do not use these two timers in your application if you ever plan
// on integrating DSP-BIOS or another realtime OS.
//
//
//###########################################################################
// $TI Release: DSP2833x Header Files V1.01 $
// $Release Date: September 26 2007 $
//###########################################################################
#include “DSP2833x_Device.h“ // Headerfile Include File
#include “DSP2833x_Examples.h“ // Examples Include File
struct CPUTIMER_VARS CpuTimer0;
// CpuTimer 1 and CpuTimer2 are used by DSP BIOS & other RTOS. Comment out if using DSP BIOS or other RTOS.
struct CPUTIMER_VARS CpuTimer1;
struct CPUTIMER_VARS CpuTimer2;
//---------------------------------------------------------------------------
// InitCpuTimers:
//---------------------------------------------------------------------------
// This function initializes all three CPU timers to a known state.
//
void InitCpuTimers(void)
{
// CPU Timer 0
// Initialize address pointers to respective timer registers:
CpuTimer0.RegsAddr = &CpuTimer0Regs;
// Initialize timer period to maximum:
CpuTimer0Regs.PRD.all = 0xFFFFFFFF;
// Initialize pre-scale counter to divide by 1 (SYSCLKOUT):
CpuTimer0Regs.TPR.all = 0;
CpuTimer0Regs.TPRH.all = 0;
// Make sure timer is stopped:
CpuTimer0Regs.TCR.bit.TSS = 1;
// Reload all counter register with period value:
CpuTimer0Regs.TCR.bit.TRB = 1;
// Reset interrupt counters:
CpuTimer0.InterruptCount = 0;
// CpuTimer 1 and CpuTimer2 are reserved for DSP BIOS & other RTOS
// Do not use these two timers if you ever plan on integrating
// DSP-BIOS or another realtime OS.
//
// Initialize address pointers to respective timer registers:
CpuTimer1.RegsAddr = &CpuTimer1Regs;
CpuTimer2.RegsAddr = &CpuTimer2Regs;
// Initialize timer period to maximum:
CpuTimer1Regs.PRD.all = 0xFFFFFFFF;
CpuTimer2Regs.PRD.all = 0xFFFFFFFF;
// Initialize pre-scale counter to divide by 1 (SYSCLKOUT):
CpuTimer1Regs.TPR.all = 0;
CpuTimer1Regs.TPRH.all = 0;
CpuTimer2Regs.TPR.all = 0;
CpuTimer2Regs.TPRH.all = 0;
// Make sure timers are stopped:
CpuTimer1Regs.TCR.bit.TSS = 1;
CpuTimer2Regs.TCR.bit.TSS = 1;
// Reload all counter register with period value:
CpuTimer1Regs.TCR.bit.TRB = 1;
CpuTimer2Regs.TCR.bit.TRB = 1;
// Reset interrupt counters:
CpuTimer1.InterruptCount = 0;
CpuTimer2.InterruptCount = 0;
}
//---------------------------------------------------------------------------
// ConfigCpuTimer:
//-------------
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 329 2017-05-20 13:48 .ccsproject
文件 17299 2017-05-20 09:57 .cdtbuild
文件 17299 2017-05-20 13:46 .cdtbuild_initial
文件 553 2017-05-20 09:57 .cdtproject
文件 28441 2017-05-20 13:48 .cproject
文件 838 2017-05-20 13:48 .project
文件 588 2017-05-20 13:46 .project_initial
目录 0 2017-11-17 20:44 .settings\
文件 62 2017-05-20 13:46 .settings\org.eclipse.cdt.codan.core.prefs
文件 123 2017-05-20 13:48 .settings\org.eclipse.cdt.debug.core.prefs
文件 606 2017-05-20 13:46 .settings\org.eclipse.cdt.managedbuilder.core.prefs
文件 301 2017-05-20 13:48 .settings\org.eclipse.core.resources.prefs
文件 3604 2017-05-20 09:57 cc_build_Debug.log
目录 0 2017-11-17 20:44 CMD\
文件 3947 2017-05-20 09:57 CMD\28335_RAM_lnk.cmd
文件 8438 2017-05-20 09:57 CMD\DSP2833x_Headers_nonBIOS.cmd
文件 4857 2017-05-20 09:57 CMD\F28335.cmd
文件 1390 2017-05-20 09:57 Debug.lkf
目录 0 2017-11-17 20:44 Debug\
文件 371 2017-06-17 16:49 Debug\ccsObjs.opt
目录 0 2017-11-17 20:44 Debug\CMD\
文件 0 2017-05-20 09:57 Debug\CMD\ccsSrcs.opt
文件 1806 2017-05-20 09:57 Debug\CMD\subdir.mk
文件 1579 2017-06-17 16:49 Debug\CMD\subdir_rules.mk
文件 373 2017-06-17 16:49 Debug\CMD\subdir_vars.mk
文件 1278 2017-05-20 14:53 Debug\DSP2833x_ADC_cal.obj
文件 1562 2017-05-20 14:53 Debug\DSP2833x_CodeStartBranch.obj
文件 5867 2017-05-20 14:53 Debug\DSP2833x_CpuTimers.obj
文件 29438 2017-05-20 14:53 Debug\DSP2833x_DefaultIsr.obj
文件 121440 2017-05-20 14:53 Debug\DSP2833x_GlobalVariableDefs.obj
文件 5822 2017-05-20 14:53 Debug\DSP2833x_PieCtrl.obj
............此处省略77个文件信息
- 上一篇:残周期正弦波形的四参数拟合
- 下一篇:家庭成员的管理问题 数据结构
相关资源
- DSP28335开发板最小系统
- DSP入门教程(非常经典)
- 基于dsp的FIR低通数字滤波器器设计
- 基于DSP_TMS320C5402的FIR数字滤波器设计
- DSP2812封装库
- TMS320C54x_fir滤波器的实现_dsp_包含源代
- 关于ccs的一个简单图像处理
- ADSP-21489中文数据手册.rar
- 基于TMS320C5509DSP的无线语音传输采集传
- 5509做的一些实验ccs4噪声比较大.zip
- DSP F2812 电机控制源程序
- 基于DSP指纹识别核心算法的设计与实
- 基于DSP28335的四路PWM移相代码
- 基于DSP28335的4路PWM移相程序
- TMS320F2812 DSP引脚说明
- SVPWM技术在dsPIC上的实现.pdf
- 基于DSP的数据采集程序
- dsp 28335的实验报告 带滤波的AD采样
- dsp2812外部中断控制实验程序
- 基于DSP 的通用语音信号处理系统的设
- 用dsPIC30F3010实现无刷直流电机的无传
- 《TI DSP在音频处理中的应用》程序代
- 6713 edma程序
- 异步电机直接转矩控制DSP程序
- TMS320F2812DSP最小系统原理图及PCB
- DSP28335生成SPWM波形源代码
- dsp SPI 应用经验总结以及例程FIFO
- DSP28335学习经验分享
- 基于DSP产生SPWM的程序
- DSP_Builder_9.1破解器
评论
共有 条评论