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

DSP编程

开发平台:

C/C++

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