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

资源简介

为消除双向全桥DC-DC变换器的回流功率,实验发现电压型双重移相控制不但可以消除回流功率、降低了电流应力而且实现了软开关,在不同输出功率下都有较好的转换效率

资源截图

代码片段和文件信息

// TI File $Revision: /main/1 $
// Checkin $Date: August 18 2006   13:46:33 $
//###########################################################################
//
// FILE: DSP2833x_MemCopy.c
//
// title: Memory Copy Utility
//
// ASSUMPTIONS:
//
//          
//
// DEscriptION:
//
//          This function will copy the specified memory contents from
//          one location to another. 
// 
//          Uint16 *SourceAddr        Pointer to the first word to be moved
//                                    SourceAddr < SourceEndAddr
//          Uint16* SourceEndAddr     Pointer to the last word to be moved
//          Uint16* DestAddr          Pointer to the first destination word
//
//          No checks are made for invalid memory locations or that the
//          end address is > then the first start address.
// 
//          
//###########################################################################
// $TI Release: DSP2833x Header Files V1.01 $
// $Release Date: September 26 2007 $
//###########################################################################

#include “DSP2833x_Device.h“

void MemCopy(Uint16 *SourceAddr Uint16* SourceEndAddr Uint16* DestAddr)
{
    while(SourceAddr < SourceEndAddr)
    { 
       *DestAddr++ = *SourceAddr++;
    }
    return;
}

//===========================================================================
// End of file.
//===========================================================================

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        404  2016-06-15 14:56  Test_DualPhase\.ccsproject

     文件      24177  2016-06-15 14:56  Test_DualPhase\.cproject

     文件       7541  2016-04-27 18:13  Test_DualPhase\.launches\POP28335_PWM_AQ.launch

     文件      10900  2016-06-15 16:23  Test_DualPhase\.launches\Test_DualPhase.launch

     文件       3630  2016-06-15 16:18  Test_DualPhase\.project

     文件         62  2016-04-21 17:13  Test_DualPhase\.settings\org.eclipse.cdt.codan.core.prefs

     文件        123  2016-03-31 14:45  Test_DualPhase\.settings\org.eclipse.cdt.debug.core.prefs

     文件        208  2016-04-15 10:50  Test_DualPhase\.settings\org.eclipse.core.resources.prefs

     文件       7270  2016-05-10 16:20  Test_DualPhase\28335_RAM_lnk.cmd

     文件       5560  2014-07-16 14:34  Test_DualPhase\cc_build_Debug.log

     文件        523  2016-06-15 16:23  Test_DualPhase\Debug\ccsObjs.opt

     文件      12132  2016-06-15 14:56  Test_DualPhase\Debug\DSP2833x_Adc.obj

     文件       3771  2016-06-15 14:56  Test_DualPhase\Debug\DSP2833x_Adc.pp

     文件       1392  2016-06-15 14:56  Test_DualPhase\Debug\DSP2833x_ADC_cal.obj

     文件       1708  2016-06-15 14:56  Test_DualPhase\Debug\DSP2833x_CodeStartBranch.obj

     文件       6077  2016-06-15 14:56  Test_DualPhase\Debug\DSP2833x_CpuTimers.obj

     文件       3945  2016-06-15 14:56  Test_DualPhase\Debug\DSP2833x_CpuTimers.pp

     文件       1306  2016-06-15 14:56  Test_DualPhase\Debug\DSP2833x_DBGIER.obj

     文件      34640  2016-06-15 14:56  Test_DualPhase\Debug\DSP2833x_DefaultIsr.obj

     文件       3974  2016-06-15 14:56  Test_DualPhase\Debug\DSP2833x_DefaultIsr.pp

     文件      16157  2016-06-15 14:56  Test_DualPhase\Debug\DSP2833x_EPwm.obj

     文件       3800  2016-06-15 14:56  Test_DualPhase\Debug\DSP2833x_EPwm.pp

     文件     121491  2016-06-15 14:56  Test_DualPhase\Debug\DSP2833x_GlobalVariableDefs.obj

     文件       3097  2016-06-15 14:56  Test_DualPhase\Debug\DSP2833x_GlobalVariableDefs.pp

     文件      11743  2016-06-15 14:56  Test_DualPhase\Debug\DSP2833x_Gpio.obj

     文件       3800  2016-06-15 14:56  Test_DualPhase\Debug\DSP2833x_Gpio.pp

     文件       2663  2016-06-15 14:56  Test_DualPhase\Debug\DSP2833x_MemCopy.obj

     文件       2781  2016-06-15 14:56  Test_DualPhase\Debug\DSP2833x_MemCopy.pp

     文件       6032  2016-06-15 14:56  Test_DualPhase\Debug\DSP2833x_PieCtrl.obj

     文件       3887  2016-06-15 14:56  Test_DualPhase\Debug\DSP2833x_PieCtrl.pp

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

评论

共有 条评论

相关资源