• 大小: 322KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-29
  • 语言: 其他
  • 标签: f28335  

资源简介

针对DSPf28335点亮LED等的基础代码,有需要的朋友可以下载看一下

资源截图

代码片段和文件信息

// 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-04-18 18:05  lab1-GPIO-LED\.ccsproject

     文件      18121  2014-07-11 17:00  lab1-GPIO-LED\.cdtbuild

     文件      18121  2017-04-18 18:05  lab1-GPIO-LED\.cdtbuild_initial

     文件        553  2014-07-11 16:10  lab1-GPIO-LED\.cdtproject

     文件      32552  2017-04-18 18:30  lab1-GPIO-LED\.cproject

     文件        843  2017-04-18 18:21  lab1-GPIO-LED\.project

     文件        583  2017-04-18 18:05  lab1-GPIO-LED\.project_initial

     文件         62  2017-04-18 18:05  lab1-GPIO-LED\.settings\org.eclipse.cdt.codan.core.prefs

     文件        123  2017-04-18 18:05  lab1-GPIO-LED\.settings\org.eclipse.cdt.debug.core.prefs

     文件        607  2017-04-18 18:05  lab1-GPIO-LED\.settings\org.eclipse.cdt.managedbuilder.core.prefs

     文件        301  2017-04-18 18:05  lab1-GPIO-LED\.settings\org.eclipse.core.resources.prefs

     文件        508  2012-08-28 09:59  lab1-GPIO-LED\cc_build_Debug.log

     文件       3947  2012-05-09 09:37  lab1-GPIO-LED\CMD\28335_RAM_lnk.cmd

     文件       8438  2007-09-21 11:09  lab1-GPIO-LED\CMD\DSP2833x_Headers_nonBIOS.cmd

     文件       4855  2008-09-24 00:54  lab1-GPIO-LED\CMD\F28335.cmd

     文件        381  2017-04-18 18:30  lab1-GPIO-LED\Debug\ccsObjs.opt

     文件          0  2014-07-11 17:00  lab1-GPIO-LED\Debug\CMD\ccsSrcs.opt

     文件       1794  2014-07-11 17:00  lab1-GPIO-LED\Debug\CMD\subdir.mk

     文件       1577  2017-04-18 18:30  lab1-GPIO-LED\Debug\CMD\subdir_rules.mk

     文件        373  2017-04-18 18:30  lab1-GPIO-LED\Debug\CMD\subdir_vars.mk

     文件       1267  2017-04-18 18:08  lab1-GPIO-LED\Debug\DSP2833x_ADC_cal.obj

     文件       1551  2017-04-18 18:08  lab1-GPIO-LED\Debug\DSP2833x_CodeStartBranch.obj

     文件       5856  2017-04-18 18:08  lab1-GPIO-LED\Debug\DSP2833x_CpuTimers.obj

     文件      29427  2017-04-18 18:08  lab1-GPIO-LED\Debug\DSP2833x_DefaultIsr.obj

     文件     121429  2017-04-18 18:08  lab1-GPIO-LED\Debug\DSP2833x_GlobalVariableDefs.obj

     文件       5811  2017-04-18 18:08  lab1-GPIO-LED\Debug\DSP2833x_PieCtrl.obj

     文件      17757  2017-04-18 18:08  lab1-GPIO-LED\Debug\DSP2833x_PieVect.obj

     文件      15985  2017-04-18 18:08  lab1-GPIO-LED\Debug\DSP2833x_SysCtrl.obj

     文件       1276  2017-04-18 18:08  lab1-GPIO-LED\Debug\DSP2833x_usDelay.obj

     文件      16031  2017-04-18 18:08  lab1-GPIO-LED\Debug\DSP2833x_Xintf.obj

............此处省略84个文件信息

评论

共有 条评论