DSP281x_InitPeripherals.c
上传用户:qingfan3
上传日期:2014-10-27
资源大小:31439k
文件大小:2k
源码类别:

DSP编程

开发平台:

C/C++

  1. //###########################################################################
  2. //
  3. // FILE: DSP281x_InitPeripherals.c
  4. //
  5. // TITLE: DSP281x Device Initialization To Default State.
  6. //
  7. //###########################################################################
  8. //
  9. //  Ver | dd mmm yyyy | Who  | Description of changes
  10. // =====|=============|======|===============================================
  11. //  1.00| 11 Sep 2003 | L.H. | No change since previous version (v.58 Alpha)
  12. //###########################################################################
  13. #include "DSP281x_Device.h"     // DSP281x Headerfile Include File
  14. #include "DSP281x_Examples.h"   // DSP281x Examples Include File
  15. //---------------------------------------------------------------------------
  16. // InitPeripherals:
  17. //---------------------------------------------------------------------------
  18. // The following function initializes the peripherals to a default state.
  19. // It calls each of the peripherals default initialization functions.
  20. // This function should be executed at boot time or on a soft reset.
  21. //
  22. void InitPeripherals(void)
  23. {
  24.         #if DSP28_F2812
  25.         // Initialize External Interface To default State:
  26.         InitXintf();
  27.         #endif
  28. // Initialize CPU Timers To default State:
  29. InitCpuTimers();
  30. // Initialize McBSP Peripheral To default State:
  31. InitMcbsp();
  32. // Initialize Event Manager Peripheral To default State:
  33. InitEv();
  34.          // Initialize ADC Peripheral To default State:
  35.         InitAdc();
  36. // Initialize eCAN Peripheral To default State:
  37.         InitECan();
  38. // Initialize SPI Peripherals To default State:
  39. InitSpi();
  40. // Initialize SCI Peripherals To default State:
  41. InitSci();
  42. }
  43. //===========================================================================
  44. // No more.
  45. //===========================================================================