system_gd32f10x.h 968 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /**
  2. ******************************************************************************
  3. * @brief CMSIS Cortex-M3 Device Peripheral Access Layer System Header File.
  4. ******************************************************************************
  5. */
  6. /** @addtogroup CMSIS
  7. * @{
  8. */
  9. /** @addtogroup GD32F10x_system
  10. * @{
  11. */
  12. /**
  13. * @brief Define to prevent recursive inclusion
  14. */
  15. #ifndef __SYSTEM_GD32F10X_H
  16. #define __SYSTEM_GD32F10X_H
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. /** @addtogroup GD32F10x_System_Includes
  21. * @{
  22. */
  23. /**
  24. * @}
  25. */
  26. /** @addtogroup GD32F10x_System_Exported_types
  27. * @{
  28. */
  29. extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */
  30. /**
  31. * @}
  32. */
  33. /** @addtogroup GD32F10x_System_Exported_Functions
  34. * @{
  35. */
  36. extern void SystemInit(void);
  37. extern void SystemCoreClockUpdate(void);
  38. /**
  39. * @}
  40. */
  41. #ifdef __cplusplus
  42. }
  43. #endif
  44. #endif /*__SYSTEM_GD32F10X_H */
  45. /**
  46. * @}
  47. */
  48. /**
  49. * @}
  50. */