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

DSP编程

开发平台:

C/C++

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