Advertisement
kenliao94

Untitled

May 30th, 2017
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.38 KB | None | 0 0
  1. #define VECT_TAB_OFFSET  0x00 /*!< Vector Table base offset field.
  2.                                    This value must be a multiple of 0x200. */
  3.  
  4.  
  5. /* PLL_VCO = (HSE_VALUE or HSI_VALUE / PLL_M) * PLL_N */
  6. #define PLL_M      8
  7. #define PLL_N      336
  8.  
  9. /* SYSCLK = PLL_VCO / PLL_P */
  10. #define PLL_P      2
  11.  
  12. /* USB OTG FS, SDIO and RNG Clock =  PLL_VCO / PLLQ */
  13. #define PLL_Q      7
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement