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

DSP编程

开发平台:

C/C++

  1. //###########################################################################
  2. //
  3. // FILE:  experiment_m_5.c
  4. //
  5. // TITLE: DSP28 T1PWM - output to generate a (square wave)note ,
  6. //        CPU Timer0 ISR every 50 ms
  7. //        Watchdog active , served in ISR and main-loop
  8. //
  9. //###########################################################################
  10. #include "DSP281x_Device.h"
  11. // Prototype statements for functions found within this file.
  12. void Gpio_select(void);
  13. //void SpeedUpRevA(void);
  14. void InitSystem(void);
  15. void CfgFlash(void);
  16. interrupt void cpu_timer0_isr(void);   // Prototype for Timer 0 Interrupt Service Routine
  17. // Global symbols defined in the linker command file
  18. extern Uint16 RamfuncsLoadStart;
  19. extern Uint16 RamfuncsLoadEnd;
  20. extern Uint16 RamfuncsRunStart;
  21. void main(void)
  22. {
  23.   unsigned int i;
  24.   unsigned long time_stamp;
  25.   int frequency[8]={2219,1973,1776,1665,1480,1332,1184,1110};
  26.   InitSystem();                   // Initialize the DSP's core Registers
  27. //SpeedUpRevA();                  // Speed_up the silicon A Revision.
  28.   Gpio_select();                  // Setup the GPIO Multiplex Registers
  29. // Copy all FLASH sections that need to run from RAM (use memcpy() from RTS library)
  30. // Section ramfuncs contains user defined code that runs from CSM secured RAM
  31.   memcpy( &RamfuncsRunStart,
  32.       &RamfuncsLoadStart,
  33.       &RamfuncsLoadEnd - &RamfuncsLoadStart);
  34. // Initialize the FLASH
  35.   CfgFlash();        // Initialize the FLASH
  36.   InitPieCtrl();                  // Function Call to init PIE-unit ( code : DSP281x_PieCtrl.c)
  37.   InitPieVectTable();             // Function call to init PIE vector table ( code : DSP281x_PieVect.c )
  38. // re-map PIE - entry for Timer 0 Interrupt
  39.   EALLOW;                         // This is needed to write to EALLOW protected registers
  40.   PieVectTable.TINT0 = &cpu_timer0_isr;
  41.   EDIS;                           // This is needed to disable write to EALLOW protected registers
  42.   InitCpuTimers();
  43. // Configure CPU-Timer 0 to interrupt every 50 ms:
  44. // 150MHz CPU Freq, 50000 microseconds interrupt period
  45.   ConfigCpuTimer(&CpuTimer0, 150, 50000);
  46. // Enable TINT0 in the PIE: Group 1 interrupt 7
  47.   PieCtrlRegs.PIEIER1.bit.INTx7 = 1;
  48. // Enable CPU INT1 which is connected to CPU-Timer 0:
  49.   IER = 1;
  50. // Enable global Interrupts and higher priority real-time debug events:
  51.   EINT;                           // Enable Global interrupt INTM
  52.   ERTM;                           // Enable Global realtime interrupt DBGM
  53. // Configure EVA
  54. // Assumes EVA Clock is already enabled in InitSysCtrl();
  55. // Drive T1PWM / T2PWM by T1/T2 - logic
  56.   EvaRegs.GPTCONA.bit.TCMPOE = 1;
  57. // Polarity of GP Timer 1 Compare = Active low
  58.   EvaRegs.GPTCONA.bit.T1PIN = 1;
  59.   EvaRegs.T1CON.all = 0x1702;     // Setup T1 count up mode
  60.   CpuTimer0Regs.TCR.bit.TSS = 0;
  61.   i = 0;
  62.   time_stamp = 0;
  63.   while(1)
  64.   {
  65.     if ((CpuTimer0.InterruptCount%4)==0)
  66.       {
  67.         EALLOW;
  68.         SysCtrlRegs.WDKEY = 0xAA; // and serve watchdog #2
  69.         EDIS;
  70.       }
  71.     if ((CpuTimer0.InterruptCount - time_stamp)>10)
  72.       {
  73.         time_stamp = CpuTimer0.InterruptCount;
  74.         if(i<7) 
  75.          EvaRegs.T1PR = frequency[i++];
  76.         else    
  77.          EvaRegs.T1PR = frequency[14-i++];
  78.         EvaRegs.T1CMPR = EvaRegs.T1PR/2;
  79.         EvaRegs.T1CON.bit.TENABLE = 1;
  80.         if (i>=14) 
  81.          i=0;
  82.       }
  83.   }
  84. }
  85. void Gpio_select(void)
  86. {
  87.   EALLOW;
  88.   GpioMuxRegs.GPAMUX.all = 0x0;   // all GPIO port Pin's to I/O
  89.   GpioMuxRegs.GPAMUX.bit.T1PWM_GPIOA6 = 1;  // T1PWM active
  90.   GpioMuxRegs.GPBMUX.all = 0x0;
  91.   GpioMuxRegs.GPDMUX.all = 0x0;
  92.   GpioMuxRegs.GPFMUX.all = 0x0;
  93.   GpioMuxRegs.GPEMUX.all = 0x0;
  94.   GpioMuxRegs.GPGMUX.all = 0x0;
  95.   GpioMuxRegs.GPADIR.all = 0x0;   // GPIO PORT  as input
  96.   GpioMuxRegs.GPBDIR.all = 0x00FF;// GPIO Port B15-B8 input , B7-B0 output
  97.   GpioMuxRegs.GPDDIR.all = 0x0;   // GPIO PORT  as input
  98.   GpioMuxRegs.GPEDIR.all = 0x0;   // GPIO PORT  as input
  99.   GpioMuxRegs.GPFDIR.all = 0x0;   // GPIO PORT  as input
  100.   GpioMuxRegs.GPGDIR.all = 0x0;   // GPIO PORT  as input
  101.   GpioMuxRegs.GPAQUAL.all = 0x0;  // Set GPIO input qualifier values to zero
  102.   GpioMuxRegs.GPBQUAL.all = 0x0;
  103.   GpioMuxRegs.GPDQUAL.all = 0x0;
  104.   GpioMuxRegs.GPEQUAL.all = 0x0;
  105.   EDIS;
  106. }
  107. /*
  108. void SpeedUpRevA(void)
  109. {
  110. // On TMX samples, to get the best performance of on chip RAM blocks M0/M1/L0/L1/H0 internal
  111. // control registers bit have to be enabled. The bits are in Device emulation registers.
  112.   EALLOW;
  113.   DevEmuRegs.M0RAMDFT = 0x0300;
  114.   DevEmuRegs.M1RAMDFT = 0x0300;
  115.   DevEmuRegs.L0RAMDFT = 0x0300;
  116.   DevEmuRegs.L1RAMDFT = 0x0300;
  117.   DevEmuRegs.H0RAMDFT = 0x0300;
  118.   EDIS;
  119. }
  120. */
  121. void InitSystem(void)
  122. {
  123.   volatile int16 dummy;           // General purpose volatile int16
  124.   EALLOW;                         // Enable EALLOW protected register access
  125. // Memory Protection Configuration
  126.   DevEmuRegs.PROTSTART = 0x0100;  // Write default value to protection start register
  127.   DevEmuRegs.PROTRANGE = 0x00FF;  // Write default value to protection range register
  128. // Unlock the Code Security Module if CSM not in use
  129. /* Unlocking the CSM will allow code running from non-secure memory
  130.    to access code and data in secure memory.  One would only want to
  131.    unsecure the CSM if code security were not desired, and therefore
  132.    the CSM is not in use (otherwise, unlocking the CSM will compromise
  133.    the security of user code).  If the CSM is not in use, the best
  134.    thing to do is leave the password locations programmed to 0xFFFF,
  135.    which is the flash ERASED state.  When all passwords are 0xFFFF,
  136.    all that is required to unlock the CSM are dummy reads of the
  137.    PWL locations.
  138. */
  139.   dummy = CsmPwl.PSWD0;           // Dummy read of PWL locations
  140.   dummy = CsmPwl.PSWD1;           // Dummy read of PWL locations
  141.   dummy = CsmPwl.PSWD2;           // Dummy read of PWL locations
  142.   dummy = CsmPwl.PSWD3;           // Dummy read of PWL locations
  143.   dummy = CsmPwl.PSWD4;           // Dummy read of PWL locations
  144.   dummy = CsmPwl.PSWD5;           // Dummy read of PWL locations
  145.   dummy = CsmPwl.PSWD6;           // Dummy read of PWL locations
  146.   dummy = CsmPwl.PSWD7;           // Dummy read of PWL locations
  147.   asm(" RPT #6 || NOP");
  148.   
  149.   SysCtrlRegs.WDCR= 0x00AF;       // Setup the watchdog
  150.                                   // 0x00E8  to disable the Watchdog , Prescaler = 1
  151.                                   // 0x00AF  to NOT disable the Watchdog, Prescaler = 64
  152.   SysCtrlRegs.SCSR = 0;           // Watchdog generates a RESET
  153.   SysCtrlRegs.PLLCR.bit.DIV = 10; // Setup the Clock PLL to multiply by 5
  154.   SysCtrlRegs.HISPCP.all = 0x1;   // Setup Highspeed Clock Prescaler to divide by 2
  155.   SysCtrlRegs.LOSPCP.all = 0x2;   // Setup Lowspeed CLock Prescaler to divide by 4
  156. // Peripheral clock enables set for the selected peripherals.
  157.   SysCtrlRegs.PCLKCR.bit.EVAENCLK=1;
  158.   SysCtrlRegs.PCLKCR.bit.EVBENCLK=0;
  159.   SysCtrlRegs.PCLKCR.bit.SCIAENCLK=0;
  160.   SysCtrlRegs.PCLKCR.bit.SCIBENCLK=0;
  161.   SysCtrlRegs.PCLKCR.bit.MCBSPENCLK=0;
  162.   SysCtrlRegs.PCLKCR.bit.SPIENCLK=0;
  163.   SysCtrlRegs.PCLKCR.bit.ECANENCLK=0;
  164.   SysCtrlRegs.PCLKCR.bit.ADCENCLK=0;
  165.   EDIS;
  166. }
  167. interrupt void cpu_timer0_isr(void)
  168. {
  169.   CpuTimer0.InterruptCount++;
  170. // Serve the watchdog every Timer 0 interrupt
  171.   EALLOW;
  172.   SysCtrlRegs.WDKEY = 0x55;       // Serve watchdog #1
  173.   EDIS;
  174. // Acknowledge this interrupt to receive more interrupts from group 1
  175.   PieCtrlRegs.PIEACK.all = PIEACK_GROUP1;
  176. }
  177. /**********************************************************************
  178. * Function: CfgFlash()
  179. * Description: Initializes the F281x flash timing registers.
  180. * Notes:
  181. *  1) This function MUST be executed out of RAM.  Executing it out of
  182. *     OTP/FLASH will produce unpredictable results.
  183. *  2) The flash registers are code security module protected.  Therefore,
  184. *     you must either run this function from L0/L1 RAM, or you must
  185. *     first unlock the CSM.  Note that unlocking the CSM as part of
  186. *     the program flow can compromise the code security.
  187. *  3) The latest datasheet for the particular device of interest should
  188. *     be consulted to confirm the flash timing specifications.
  189. **********************************************************************/
  190. #pragma CODE_SECTION(CfgFlash, "ramfuncs")
  191. void CfgFlash(void)
  192. {
  193.   asm(" EALLOW");                      // Enable EALLOW protected register access
  194.   FlashRegs.FPWR.bit.PWR = 3;          // Pump and bank set to active mode
  195.   FlashRegs.FSTATUS.bit.V3STAT = 1;    // Clear the 3VSTAT bit
  196.   FlashRegs.FSTDBYWAIT.bit.STDBYWAIT = 0x01FF;   // Sleep to standby transition cycles
  197.   FlashRegs.FACTIVEWAIT.bit.ACTIVEWAIT = 0x01FF; // Standby to active transition cycles
  198.   FlashRegs.FBANKWAIT.bit.RANDWAIT = 5;// Random access waitstates
  199.   FlashRegs.FBANKWAIT.bit.PAGEWAIT = 5;// Paged access waitstates
  200.   FlashRegs.FOTPWAIT.bit.OTPWAIT = 8;  // OTP waitstates
  201.   FlashRegs.FOPT.bit.ENPIPE = 1;       // Enable the flash pipeline
  202.   asm(" EDIS");                        // Disable EALLOW protected register access
  203. // Force a complete pipeline flush to ensure that the write to the last register
  204. // configured occurs before returning.  Safest thing is to wait 8 full cycles.
  205.   asm(" RPT #6 || NOP");
  206. }  //end of CfgFlash()
  207. //===========================================================================
  208. // End
  209. //===========================================================================