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

DSP编程

开发平台:

C/C++

  1. //###########################################################################
  2. //
  3. // FILE: DSP281x_ECan.c
  4. //
  5. // TITLE: DSP281x Enhanced CAN Initialization & Support Functions.
  6. //
  7. //###########################################################################
  8. //
  9. //  Ver | dd mmm yyyy | Who  | Description of changes
  10. // =====|=============|======|===============================================
  11. //  1.00| 11 Sep 2003 | H.J. | Changes since previous version (v.58 Alpha)
  12. //      |             |      | Added several initialization routines
  13. //###########################################################################
  14. #include "DSP281x_Device.h"     // DSP28 Headerfile Include File
  15. #include "DSP281x_Examples.h"   // DSP28 Examples Include File
  16. //---------------------------------------------------------------------------
  17. // InitECan: 
  18. //---------------------------------------------------------------------------
  19. // This function initializes the eCAN module to a known state.
  20. //
  21. void InitECan(void)
  22. {
  23. long i;
  24. asm("  EALLOW");
  25. /* Disable Watchdog  */
  26.    DisableDog();    
  27.     
  28. /* Enable peripheral clocks  */   
  29.    InitPeripheralClocks();    
  30.     
  31. /* Set PLL multiplication factor */
  32.    InitPll(0xA);
  33.    
  34.    asm("  EALLOW");
  35.    
  36. /* Configure eCAN pins using GPIO regs*/
  37. GpioMuxRegs.GPFMUX.bit.CANTXA_GPIOF6 = 1;
  38. GpioMuxRegs.GPFMUX.bit.CANRXA_GPIOF7 = 1;
  39. /* Configure eCAN RX and TX pins for eCAN transmissions using eCAN regs*/  
  40.     
  41.     ECanaRegs.CANTIOC.bit.TXFUNC = 1;
  42.     ECanaRegs.CANRIOC.bit.RXFUNC = 1;   
  43. /* Configure eCAN for HECC mode - (reqd to access mailboxes 16 thru 31) */
  44. // HECC mode also enables time-stamping feature
  45. ECanaRegs.CANMC.bit.SCB = 1;
  46. /* Initialize all bits of 'Master Control Field' to zero */
  47. // Some bits of MSGCTRL register come up in an unknown state. For proper operation,
  48. // all bits (including reserved bits) of MSGCTRL must be initialized to zero
  49.  
  50.     ECanaMboxes.MBOX0.MSGCTRL.all = 0x00000000;
  51.     ECanaMboxes.MBOX1.MSGCTRL.all = 0x00000000;
  52.     ECanaMboxes.MBOX2.MSGCTRL.all = 0x00000000;
  53.     ECanaMboxes.MBOX3.MSGCTRL.all = 0x00000000;
  54.     ECanaMboxes.MBOX4.MSGCTRL.all = 0x00000000;
  55.     ECanaMboxes.MBOX5.MSGCTRL.all = 0x00000000;
  56.     ECanaMboxes.MBOX6.MSGCTRL.all = 0x00000000;
  57.     ECanaMboxes.MBOX7.MSGCTRL.all = 0x00000000;
  58.     ECanaMboxes.MBOX8.MSGCTRL.all = 0x00000000;
  59.     ECanaMboxes.MBOX9.MSGCTRL.all = 0x00000000;
  60.     ECanaMboxes.MBOX10.MSGCTRL.all = 0x00000000;
  61.     ECanaMboxes.MBOX11.MSGCTRL.all = 0x00000000;
  62.     ECanaMboxes.MBOX12.MSGCTRL.all = 0x00000000;
  63.     ECanaMboxes.MBOX13.MSGCTRL.all = 0x00000000;
  64.     ECanaMboxes.MBOX14.MSGCTRL.all = 0x00000000;
  65.     ECanaMboxes.MBOX15.MSGCTRL.all = 0x00000000;
  66.     ECanaMboxes.MBOX16.MSGCTRL.all = 0x00000000;
  67.     ECanaMboxes.MBOX17.MSGCTRL.all = 0x00000000;
  68.     ECanaMboxes.MBOX18.MSGCTRL.all = 0x00000000;
  69.     ECanaMboxes.MBOX19.MSGCTRL.all = 0x00000000;
  70.     ECanaMboxes.MBOX20.MSGCTRL.all = 0x00000000;
  71.     ECanaMboxes.MBOX21.MSGCTRL.all = 0x00000000;
  72.     ECanaMboxes.MBOX22.MSGCTRL.all = 0x00000000;
  73.     ECanaMboxes.MBOX23.MSGCTRL.all = 0x00000000;
  74.     ECanaMboxes.MBOX24.MSGCTRL.all = 0x00000000;
  75.     ECanaMboxes.MBOX25.MSGCTRL.all = 0x00000000;
  76.     ECanaMboxes.MBOX26.MSGCTRL.all = 0x00000000;
  77.     ECanaMboxes.MBOX27.MSGCTRL.all = 0x00000000;
  78.     ECanaMboxes.MBOX28.MSGCTRL.all = 0x00000000;
  79.     ECanaMboxes.MBOX29.MSGCTRL.all = 0x00000000;
  80.     ECanaMboxes.MBOX30.MSGCTRL.all = 0x00000000;
  81.     ECanaMboxes.MBOX31.MSGCTRL.all = 0x00000000;
  82. // TAn, RMPn, GIFn bits are all zero upon reset and are cleared again
  83. // as a matter of precaution. 
  84. /* Clear all TAn bits */      
  85. ECanaRegs.CANTA.all = 0xFFFFFFFF;
  86. /* Clear all RMPn bits */      
  87. ECanaRegs.CANRMP.all = 0xFFFFFFFF;
  88. /* Clear all interrupt flag bits */      
  89. ECanaRegs.CANGIF0.all = 0xFFFFFFFF;
  90. ECanaRegs.CANGIF1.all = 0xFFFFFFFF;
  91. /* Configure bit timing parameters */
  92. ECanaRegs.CANMC.bit.CCR = 1 ;            // Set CCR = 1
  93.     
  94.     while(ECanaRegs.CANES.bit.CCE != 1 ) {}   // Wait for CCE bit to be set..
  95.     
  96.     ECanaRegs.CANBTC.bit.BRPREG = 9;
  97.     ECanaRegs.CANBTC.bit.TSEG2REG = 2;
  98.     ECanaRegs.CANBTC.bit.TSEG1REG = 10;  
  99.     
  100.     ECanaRegs.CANMC.bit.CCR = 0 ;             // Set CCR = 0
  101.     while(ECanaRegs.CANES.bit.CCE == !0 ) {}   // Wait for CCE bit to be cleared..
  102. /* Disable all Mailboxes  */
  103.   ECanaRegs.CANME.all = 0; // Required before writing the MSGIDs
  104. }
  105. /***************************************************/
  106. /* Bit configuration parameters for 150 MHz SYSCLKOUT*/ 
  107. /***************************************************/
  108. /*
  109. The table below shows how BRP field must be changed to achieve different bit
  110. rates with a BT of 15, for a 80% SP:
  111. ---------------------------------------------------
  112. BT = 15, TSEG1 = 10, TSEG2 = 2, Sampling Point = 80% 
  113. ---------------------------------------------------
  114. 1   Mbps : BRP+1 = 10  : CAN clock = 15 MHz
  115. 500 kbps : BRP+1 = 20  : CAN clock = 7.5 MHz 
  116. 250 kbps : BRP+1 = 40  : CAN clock = 3.75 MHz 
  117. 125 kbps : BRP+1 = 80  : CAN clock = 1.875 MHz 
  118. 100 kbps : BRP+1 = 100  : CAN clock = 1.5 MHz
  119. 50  kbps : BRP+1 = 200  : CAN clock = 0.75 MHz
  120. The table below shows how to achieve different sampling points with a BT of 25:
  121. -------------------------------------------------------------
  122. Achieving desired SP by changing TSEG1 & TSEG2 with BT = 25  
  123. -------------------------------------------------------------
  124. TSEG1 = 18, TSEG2 = 4, SP = 80% 
  125. TSEG1 = 17, TSEG2 = 5, SP = 76% 
  126. TSEG1 = 16, TSEG2 = 6, SP = 72% 
  127. TSEG1 = 15, TSEG2 = 7, SP = 68% 
  128. TSEG1 = 14, TSEG2 = 8, SP = 64% 
  129. The table below shows how BRP field must be changed to achieve different bit
  130. rates with a BT of 25, for the sampling points shown above: 
  131. 1   Mbps : BRP+1 = 6 
  132. 500 kbps : BRP+1 = 12 
  133. 250 kbps : BRP+1 = 24 
  134. 125 kbps : BRP+1 = 48 
  135. 100 kbps : BRP+1 = 60
  136. 50  kbps : BRP+1 = 120
  137. */