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

DSP编程

开发平台:

C/C++

  1. //###########################################################################
  2. //
  3. // FILE:  experiment_m_2.c
  4. //
  5. // TITLE: DSP28 GPIO - Port B7..B0  : 8-Bit "Knight - Rider" , software delay
  6. //
  7. //###########################################################################
  8. #include "DSP281x_Device.h"
  9. // Prototype statements for functions found within this file.
  10. void delay_loop(long);
  11. void Gpio_select(void);
  12. //void SpeedUpRevA(void);
  13. void InitSystem(void);
  14. void CfgFlash(void);
  15. // Global symbols defined in the linker command file
  16. extern Uint16 RamfuncsLoadStart;
  17. extern Uint16 RamfuncsLoadEnd;
  18. extern Uint16 RamfuncsRunStart;
  19. void main(void)
  20. {
  21.   unsigned int i;
  22.   unsigned int LED[8]= {0xFFFE,0xFFFD,0xFFFB,0xFFF7,
  23.                         0xFFEF,0xFFDF,0xFFBF,0xFF7F};
  24.   InitSystem();                   // Initialize the DSP's core Registers
  25. //SpeedUpRevA();                  // Speed_up the silicon A Revision.
  26.   Gpio_select();                  // Setup the GPIO Multiplex Registers
  27. // Copy all FLASH sections that need to run from RAM (use memcpy() from RTS library)
  28. // Section ramfuncs contains user defined code that runs from CSM secured RAM
  29.   memcpy( &RamfuncsRunStart,
  30.       &RamfuncsLoadStart,
  31.       &RamfuncsLoadEnd - &RamfuncsLoadStart);
  32. // Initialize the FLASH
  33.   CfgFlash();        // Initialize the FLASH
  34.   while(1)
  35.   {
  36.     for(i=0;i<14;i++)
  37.     {
  38.       if(i<7)
  39.         GpioDataRegs.GPBDAT.all = LED[i];
  40.       else
  41.        GpioDataRegs.GPBDAT.all = LED[14-i];
  42.       delay_loop(1000000);
  43.     }
  44.   }
  45. }
  46. void delay_loop(long end)
  47. {
  48.   long i;
  49.   for (i = 0; i < end; i++);
  50.   EALLOW;
  51.   SysCtrlRegs.WDKEY = 0x55;
  52.   SysCtrlRegs.WDKEY = 0xAA;
  53.   EDIS;
  54. }
  55. void Gpio_select(void)
  56. {
  57.   EALLOW;
  58.   GpioMuxRegs.GPAMUX.all = 0x0;   // all GPIO port Pin's to I/O
  59.   GpioMuxRegs.GPBMUX.all = 0x0;
  60.   GpioMuxRegs.GPDMUX.all = 0x0;
  61.   GpioMuxRegs.GPFMUX.all = 0x0;
  62.   GpioMuxRegs.GPEMUX.all = 0x0;
  63.   GpioMuxRegs.GPGMUX.all = 0x0;
  64.   GpioMuxRegs.GPADIR.all = 0x0;   // GPIO PORT  as input
  65.   GpioMuxRegs.GPBDIR.all = 0x00FF;// GPIO Port B15-B8 input , B7-B0 output
  66.   GpioMuxRegs.GPDDIR.all = 0x0;   // GPIO PORT  as input
  67.   GpioMuxRegs.GPEDIR.all = 0x0;   // GPIO PORT  as input
  68.   GpioMuxRegs.GPFDIR.all = 0x0;   // GPIO PORT  as input
  69.   GpioMuxRegs.GPGDIR.all = 0x0;   // GPIO PORT  as input
  70.   GpioMuxRegs.GPAQUAL.all = 0x0;  // Set GPIO input qualifier values to zero
  71.   GpioMuxRegs.GPBQUAL.all = 0x0;
  72.   GpioMuxRegs.GPDQUAL.all = 0x0;
  73.   GpioMuxRegs.GPEQUAL.all = 0x0;
  74.   EDIS;
  75. }
  76. /*
  77. void SpeedUpRevA(void)
  78. {
  79. // On TMX samples, to get the best performance of on chip RAM blocks M0/M1/L0/L1/H0 internal
  80. // control registers bit have to be enabled. The bits are in Device emulation registers.
  81.   EALLOW;
  82.   DevEmuRegs.M0RAMDFT = 0x0300;
  83.   DevEmuRegs.M1RAMDFT = 0x0300;
  84.   DevEmuRegs.L0RAMDFT = 0x0300;
  85.   DevEmuRegs.L1RAMDFT = 0x0300;
  86.   DevEmuRegs.H0RAMDFT = 0x0300;
  87.   EDIS;
  88. }
  89. */
  90. void InitSystem(void)
  91. {
  92.   volatile int16 dummy;           // General purpose volatile int16
  93.   EALLOW;                         // Enable EALLOW protected register access
  94. // Memory Protection Configuration
  95.   DevEmuRegs.PROTSTART = 0x0100;  // Write default value to protection start register
  96.   DevEmuRegs.PROTRANGE = 0x00FF;  // Write default value to protection range register
  97. // Unlock the Code Security Module if CSM not in use
  98. /* Unlocking the CSM will allow code running from non-secure memory
  99.    to access code and data in secure memory.  One would only want to
  100.    unsecure the CSM if code security were not desired, and therefore
  101.    the CSM is not in use (otherwise, unlocking the CSM will compromise
  102.    the security of user code).  If the CSM is not in use, the best
  103.    thing to do is leave the password locations programmed to 0xFFFF,
  104.    which is the flash ERASED state.  When all passwords are 0xFFFF,
  105.    all that is required to unlock the CSM are dummy reads of the
  106.    PWL locations.
  107. */
  108.   dummy = CsmPwl.PSWD0;           // Dummy read of PWL locations
  109.   dummy = CsmPwl.PSWD1;           // Dummy read of PWL locations
  110.   dummy = CsmPwl.PSWD2;           // Dummy read of PWL locations
  111.   dummy = CsmPwl.PSWD3;           // Dummy read of PWL locations
  112.   dummy = CsmPwl.PSWD4;           // Dummy read of PWL locations
  113.   dummy = CsmPwl.PSWD5;           // Dummy read of PWL locations
  114.   dummy = CsmPwl.PSWD6;           // Dummy read of PWL locations
  115.   dummy = CsmPwl.PSWD7;           // Dummy read of PWL locations
  116.   asm(" RPT #6 || NOP");
  117.   SysCtrlRegs.WDCR= 0x00AF;       // Setup the watchdog
  118.                                   // 0x00E8  to disable the Watchdog , Prescaler = 1
  119.                                   // 0x00AF  to NOT disable the Watchdog, Prescaler = 64
  120.   SysCtrlRegs.SCSR = 0;           // Watchdog generates a RESET
  121.   SysCtrlRegs.PLLCR.bit.DIV = 10; // Setup the Clock PLL to multiply by 5
  122.   SysCtrlRegs.HISPCP.all = 0x1;   // Setup Highspeed Clock Prescaler to divide by 2
  123.   SysCtrlRegs.LOSPCP.all = 0x2;   // Setup Lowspeed CLock Prescaler to divide by 4
  124. // Peripheral clock enables set for the selected peripherals.
  125.   SysCtrlRegs.PCLKCR.bit.EVAENCLK=0;
  126.   SysCtrlRegs.PCLKCR.bit.EVBENCLK=0;
  127.   SysCtrlRegs.PCLKCR.bit.SCIAENCLK=0;
  128.   SysCtrlRegs.PCLKCR.bit.SCIBENCLK=0;
  129.   SysCtrlRegs.PCLKCR.bit.MCBSPENCLK=0;
  130.   SysCtrlRegs.PCLKCR.bit.SPIENCLK=0;
  131.   SysCtrlRegs.PCLKCR.bit.ECANENCLK=0;
  132.   SysCtrlRegs.PCLKCR.bit.ADCENCLK=0;
  133.   EDIS;
  134. }
  135. /**********************************************************************
  136. * Function: CfgFlash()
  137. * Description: Initializes the F281x flash timing registers.
  138. * Notes:
  139. *  1) This function MUST be executed out of RAM.  Executing it out of
  140. *     OTP/FLASH will produce unpredictable results.
  141. *  2) The flash registers are code security module protected.  Therefore,
  142. *     you must either run this function from L0/L1 RAM, or you must
  143. *     first unlock the CSM.  Note that unlocking the CSM as part of
  144. *     the program flow can compromise the code security.
  145. *  3) The latest datasheet for the particular device of interest should
  146. *     be consulted to confirm the flash timing specifications.
  147. **********************************************************************/
  148. #pragma CODE_SECTION(CfgFlash, "ramfuncs")
  149. void CfgFlash(void)
  150. {
  151.   asm(" EALLOW");                      // Enable EALLOW protected register access
  152.   FlashRegs.FPWR.bit.PWR = 3;          // Pump and bank set to active mode
  153.   FlashRegs.FSTATUS.bit.V3STAT = 1;    // Clear the 3VSTAT bit
  154.   FlashRegs.FSTDBYWAIT.bit.STDBYWAIT = 0x01FF;   // Sleep to standby transition cycles
  155.   FlashRegs.FACTIVEWAIT.bit.ACTIVEWAIT = 0x01FF; // Standby to active transition cycles
  156.   FlashRegs.FBANKWAIT.bit.RANDWAIT = 5;// Random access waitstates
  157.   FlashRegs.FBANKWAIT.bit.PAGEWAIT = 5;// Paged access waitstates
  158.   FlashRegs.FOTPWAIT.bit.OTPWAIT = 8;  // OTP waitstates
  159.   FlashRegs.FOPT.bit.ENPIPE = 1;       // Enable the flash pipeline
  160.   asm(" EDIS");                        // Disable EALLOW protected register access
  161. // Force a complete pipeline flush to ensure that the write to the last register
  162. // configured occurs before returning.  Safest thing is to wait 8 full cycles.
  163.   asm(" RPT #6 || NOP");
  164. }  //end of CfgFlash()
  165. //===========================================================================
  166. // End
  167. //===========================================================================