system_ARMCM85.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /**************************************************************************//**
  2. * @file system_ARMCM85.h
  3. * @brief CMSIS Device System Header File for ARMCM85 Device
  4. * @version V1.0.0
  5. * @date 07. February 2022
  6. ******************************************************************************/
  7. /*
  8. * Copyright (c) 2022 Arm Limited. All rights reserved.
  9. *
  10. * SPDX-License-Identifier: Apache-2.0
  11. *
  12. * Licensed under the Apache License, Version 2.0 (the License); you may
  13. * not use this file except in compliance with the License.
  14. * You may obtain a copy of the License at
  15. *
  16. * www.apache.org/licenses/LICENSE-2.0
  17. *
  18. * Unless required by applicable law or agreed to in writing, software
  19. * distributed under the License is distributed on an AS IS BASIS, WITHOUT
  20. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  21. * See the License for the specific language governing permissions and
  22. * limitations under the License.
  23. */
  24. #ifndef SYSTEM_ARMCM85_H
  25. #define SYSTEM_ARMCM85_H
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif
  29. /**
  30. \brief Exception / Interrupt Handler Function Prototype
  31. */
  32. typedef void(*VECTOR_TABLE_Type)(void);
  33. /**
  34. \brief System Clock Frequency (Core Clock)
  35. */
  36. extern uint32_t SystemCoreClock;
  37. /**
  38. \brief Setup the microcontroller system.
  39. Initialize the System and update the SystemCoreClock variable.
  40. */
  41. extern void SystemInit (void);
  42. /**
  43. \brief Update SystemCoreClock variable.
  44. Updates the SystemCoreClock with current core Clock retrieved from cpu registers.
  45. */
  46. extern void SystemCoreClockUpdate (void);
  47. #ifdef __cplusplus
  48. }
  49. #endif
  50. #endif /* SYSTEM_ARMCM85_H */