Naze32 clone with Frysky receiver
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

core_cm0.h 35KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740
  1. /**************************************************************************//**
  2. * @file core_cm0.h
  3. * @brief CMSIS Cortex-M0 Core Peripheral Access Layer Header File
  4. * @version V4.10
  5. * @date 18. March 2015
  6. *
  7. * @note
  8. *
  9. ******************************************************************************/
  10. /* Copyright (c) 2009 - 2015 ARM LIMITED
  11. All rights reserved.
  12. Redistribution and use in source and binary forms, with or without
  13. modification, are permitted provided that the following conditions are met:
  14. - Redistributions of source code must retain the above copyright
  15. notice, this list of conditions and the following disclaimer.
  16. - Redistributions in binary form must reproduce the above copyright
  17. notice, this list of conditions and the following disclaimer in the
  18. documentation and/or other materials provided with the distribution.
  19. - Neither the name of ARM nor the names of its contributors may be used
  20. to endorse or promote products derived from this software without
  21. specific prior written permission.
  22. *
  23. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  24. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  25. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  26. ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE
  27. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  28. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  29. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  30. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  31. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  32. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  33. POSSIBILITY OF SUCH DAMAGE.
  34. ---------------------------------------------------------------------------*/
  35. #if defined ( __ICCARM__ )
  36. #pragma system_include /* treat file as system include file for MISRA check */
  37. #endif
  38. #ifndef __CORE_CM0_H_GENERIC
  39. #define __CORE_CM0_H_GENERIC
  40. #ifdef __cplusplus
  41. extern "C" {
  42. #endif
  43. /** \page CMSIS_MISRA_Exceptions MISRA-C:2004 Compliance Exceptions
  44. CMSIS violates the following MISRA-C:2004 rules:
  45. \li Required Rule 8.5, object/function definition in header file.<br>
  46. Function definitions in header files are used to allow 'inlining'.
  47. \li Required Rule 18.4, declaration of union type or object of union type: '{...}'.<br>
  48. Unions are used for effective representation of core registers.
  49. \li Advisory Rule 19.7, Function-like macro defined.<br>
  50. Function-like macros are used to allow more efficient code.
  51. */
  52. /*******************************************************************************
  53. * CMSIS definitions
  54. ******************************************************************************/
  55. /** \ingroup Cortex_M0
  56. @{
  57. */
  58. /* CMSIS CM0 definitions */
  59. #define __CM0_CMSIS_VERSION_MAIN (0x04) /*!< [31:16] CMSIS HAL main version */
  60. #define __CM0_CMSIS_VERSION_SUB (0x00) /*!< [15:0] CMSIS HAL sub version */
  61. #define __CM0_CMSIS_VERSION ((__CM0_CMSIS_VERSION_MAIN << 16) | \
  62. __CM0_CMSIS_VERSION_SUB ) /*!< CMSIS HAL version number */
  63. #define __CORTEX_M (0x00) /*!< Cortex-M Core */
  64. #if defined ( __CC_ARM )
  65. #define __ASM __asm /*!< asm keyword for ARM Compiler */
  66. #define __INLINE __inline /*!< inline keyword for ARM Compiler */
  67. #define __STATIC_INLINE static __inline
  68. #elif defined ( __GNUC__ )
  69. #define __ASM __asm /*!< asm keyword for GNU Compiler */
  70. #define __INLINE inline /*!< inline keyword for GNU Compiler */
  71. #define __STATIC_INLINE static inline
  72. #elif defined ( __ICCARM__ )
  73. #define __ASM __asm /*!< asm keyword for IAR Compiler */
  74. #define __INLINE inline /*!< inline keyword for IAR Compiler. Only available in High optimization mode! */
  75. #define __STATIC_INLINE static inline
  76. #elif defined ( __TMS470__ )
  77. #define __ASM __asm /*!< asm keyword for TI CCS Compiler */
  78. #define __STATIC_INLINE static inline
  79. #elif defined ( __TASKING__ )
  80. #define __ASM __asm /*!< asm keyword for TASKING Compiler */
  81. #define __INLINE inline /*!< inline keyword for TASKING Compiler */
  82. #define __STATIC_INLINE static inline
  83. #elif defined ( __CSMC__ )
  84. #define __packed
  85. #define __ASM _asm /*!< asm keyword for COSMIC Compiler */
  86. #define __INLINE inline /*use -pc99 on compile line !< inline keyword for COSMIC Compiler */
  87. #define __STATIC_INLINE static inline
  88. #endif
  89. /** __FPU_USED indicates whether an FPU is used or not.
  90. This core does not support an FPU at all
  91. */
  92. #define __FPU_USED 0
  93. #if defined ( __CC_ARM )
  94. #if defined __TARGET_FPU_VFP
  95. #warning "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)"
  96. #endif
  97. #elif defined ( __GNUC__ )
  98. #if defined (__VFP_FP__) && !defined(__SOFTFP__)
  99. #warning "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)"
  100. #endif
  101. #elif defined ( __ICCARM__ )
  102. #if defined __ARMVFP__
  103. #warning "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)"
  104. #endif
  105. #elif defined ( __TMS470__ )
  106. #if defined __TI__VFP_SUPPORT____
  107. #warning "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)"
  108. #endif
  109. #elif defined ( __TASKING__ )
  110. #if defined __FPU_VFP__
  111. #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)"
  112. #endif
  113. #elif defined ( __CSMC__ ) /* Cosmic */
  114. #if ( __CSMC__ & 0x400) // FPU present for parser
  115. #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)"
  116. #endif
  117. #endif
  118. #include <stdint.h> /* standard types definitions */
  119. #include <core_cmInstr.h> /* Core Instruction Access */
  120. #include <core_cmFunc.h> /* Core Function Access */
  121. #ifdef __cplusplus
  122. }
  123. #endif
  124. #endif /* __CORE_CM0_H_GENERIC */
  125. #ifndef __CMSIS_GENERIC
  126. #ifndef __CORE_CM0_H_DEPENDANT
  127. #define __CORE_CM0_H_DEPENDANT
  128. #ifdef __cplusplus
  129. extern "C" {
  130. #endif
  131. /* check device defines and use defaults */
  132. #if defined __CHECK_DEVICE_DEFINES
  133. #ifndef __CM0_REV
  134. #define __CM0_REV 0x0000
  135. #warning "__CM0_REV not defined in device header file; using default!"
  136. #endif
  137. #ifndef __NVIC_PRIO_BITS
  138. #define __NVIC_PRIO_BITS 2
  139. #warning "__NVIC_PRIO_BITS not defined in device header file; using default!"
  140. #endif
  141. #ifndef __Vendor_SysTickConfig
  142. #define __Vendor_SysTickConfig 0
  143. #warning "__Vendor_SysTickConfig not defined in device header file; using default!"
  144. #endif
  145. #endif
  146. /* IO definitions (access restrictions to peripheral registers) */
  147. /**
  148. \defgroup CMSIS_glob_defs CMSIS Global Defines
  149. <strong>IO Type Qualifiers</strong> are used
  150. \li to specify the access to peripheral variables.
  151. \li for automatic generation of peripheral register debug information.
  152. */
  153. #ifdef __cplusplus
  154. #define __I volatile /*!< Defines 'read only' permissions */
  155. #else
  156. #define __I volatile const /*!< Defines 'read only' permissions */
  157. #endif
  158. #define __O volatile /*!< Defines 'write only' permissions */
  159. #define __IO volatile /*!< Defines 'read / write' permissions */
  160. /*@} end of group Cortex_M0 */
  161. /*******************************************************************************
  162. * Register Abstraction
  163. Core Register contain:
  164. - Core Register
  165. - Core NVIC Register
  166. - Core SCB Register
  167. - Core SysTick Register
  168. ******************************************************************************/
  169. /** \defgroup CMSIS_core_register Defines and Type Definitions
  170. \brief Type definitions and defines for Cortex-M processor based devices.
  171. */
  172. /** \ingroup CMSIS_core_register
  173. \defgroup CMSIS_CORE Status and Control Registers
  174. \brief Core Register type definitions.
  175. @{
  176. */
  177. /** \brief Union type to access the Application Program Status Register (APSR).
  178. */
  179. typedef union
  180. {
  181. struct
  182. {
  183. uint32_t _reserved0:28; /*!< bit: 0..27 Reserved */
  184. uint32_t V:1; /*!< bit: 28 Overflow condition code flag */
  185. uint32_t C:1; /*!< bit: 29 Carry condition code flag */
  186. uint32_t Z:1; /*!< bit: 30 Zero condition code flag */
  187. uint32_t N:1; /*!< bit: 31 Negative condition code flag */
  188. } b; /*!< Structure used for bit access */
  189. uint32_t w; /*!< Type used for word access */
  190. } APSR_Type;
  191. /* APSR Register Definitions */
  192. #define APSR_N_Pos 31 /*!< APSR: N Position */
  193. #define APSR_N_Msk (1UL << APSR_N_Pos) /*!< APSR: N Mask */
  194. #define APSR_Z_Pos 30 /*!< APSR: Z Position */
  195. #define APSR_Z_Msk (1UL << APSR_Z_Pos) /*!< APSR: Z Mask */
  196. #define APSR_C_Pos 29 /*!< APSR: C Position */
  197. #define APSR_C_Msk (1UL << APSR_C_Pos) /*!< APSR: C Mask */
  198. #define APSR_V_Pos 28 /*!< APSR: V Position */
  199. #define APSR_V_Msk (1UL << APSR_V_Pos) /*!< APSR: V Mask */
  200. /** \brief Union type to access the Interrupt Program Status Register (IPSR).
  201. */
  202. typedef union
  203. {
  204. struct
  205. {
  206. uint32_t ISR:9; /*!< bit: 0.. 8 Exception number */
  207. uint32_t _reserved0:23; /*!< bit: 9..31 Reserved */
  208. } b; /*!< Structure used for bit access */
  209. uint32_t w; /*!< Type used for word access */
  210. } IPSR_Type;
  211. /* IPSR Register Definitions */
  212. #define IPSR_ISR_Pos 0 /*!< IPSR: ISR Position */
  213. #define IPSR_ISR_Msk (0x1FFUL /*<< IPSR_ISR_Pos*/) /*!< IPSR: ISR Mask */
  214. /** \brief Union type to access the Special-Purpose Program Status Registers (xPSR).
  215. */
  216. typedef union
  217. {
  218. struct
  219. {
  220. uint32_t ISR:9; /*!< bit: 0.. 8 Exception number */
  221. uint32_t _reserved0:15; /*!< bit: 9..23 Reserved */
  222. uint32_t T:1; /*!< bit: 24 Thumb bit (read 0) */
  223. uint32_t _reserved1:3; /*!< bit: 25..27 Reserved */
  224. uint32_t V:1; /*!< bit: 28 Overflow condition code flag */
  225. uint32_t C:1; /*!< bit: 29 Carry condition code flag */
  226. uint32_t Z:1; /*!< bit: 30 Zero condition code flag */
  227. uint32_t N:1; /*!< bit: 31 Negative condition code flag */
  228. } b; /*!< Structure used for bit access */
  229. uint32_t w; /*!< Type used for word access */
  230. } xPSR_Type;
  231. /* xPSR Register Definitions */
  232. #define xPSR_N_Pos 31 /*!< xPSR: N Position */
  233. #define xPSR_N_Msk (1UL << xPSR_N_Pos) /*!< xPSR: N Mask */
  234. #define xPSR_Z_Pos 30 /*!< xPSR: Z Position */
  235. #define xPSR_Z_Msk (1UL << xPSR_Z_Pos) /*!< xPSR: Z Mask */
  236. #define xPSR_C_Pos 29 /*!< xPSR: C Position */
  237. #define xPSR_C_Msk (1UL << xPSR_C_Pos) /*!< xPSR: C Mask */
  238. #define xPSR_V_Pos 28 /*!< xPSR: V Position */
  239. #define xPSR_V_Msk (1UL << xPSR_V_Pos) /*!< xPSR: V Mask */
  240. #define xPSR_T_Pos 24 /*!< xPSR: T Position */
  241. #define xPSR_T_Msk (1UL << xPSR_T_Pos) /*!< xPSR: T Mask */
  242. #define xPSR_ISR_Pos 0 /*!< xPSR: ISR Position */
  243. #define xPSR_ISR_Msk (0x1FFUL /*<< xPSR_ISR_Pos*/) /*!< xPSR: ISR Mask */
  244. /** \brief Union type to access the Control Registers (CONTROL).
  245. */
  246. typedef union
  247. {
  248. struct
  249. {
  250. uint32_t _reserved0:1; /*!< bit: 0 Reserved */
  251. uint32_t SPSEL:1; /*!< bit: 1 Stack to be used */
  252. uint32_t _reserved1:30; /*!< bit: 2..31 Reserved */
  253. } b; /*!< Structure used for bit access */
  254. uint32_t w; /*!< Type used for word access */
  255. } CONTROL_Type;
  256. /* CONTROL Register Definitions */
  257. #define CONTROL_SPSEL_Pos 1 /*!< CONTROL: SPSEL Position */
  258. #define CONTROL_SPSEL_Msk (1UL << CONTROL_SPSEL_Pos) /*!< CONTROL: SPSEL Mask */
  259. /*@} end of group CMSIS_CORE */
  260. /** \ingroup CMSIS_core_register
  261. \defgroup CMSIS_NVIC Nested Vectored Interrupt Controller (NVIC)
  262. \brief Type definitions for the NVIC Registers
  263. @{
  264. */
  265. /** \brief Structure type to access the Nested Vectored Interrupt Controller (NVIC).
  266. */
  267. typedef struct
  268. {
  269. __IO uint32_t ISER[1]; /*!< Offset: 0x000 (R/W) Interrupt Set Enable Register */
  270. uint32_t RESERVED0[31];
  271. __IO uint32_t ICER[1]; /*!< Offset: 0x080 (R/W) Interrupt Clear Enable Register */
  272. uint32_t RSERVED1[31];
  273. __IO uint32_t ISPR[1]; /*!< Offset: 0x100 (R/W) Interrupt Set Pending Register */
  274. uint32_t RESERVED2[31];
  275. __IO uint32_t ICPR[1]; /*!< Offset: 0x180 (R/W) Interrupt Clear Pending Register */
  276. uint32_t RESERVED3[31];
  277. uint32_t RESERVED4[64];
  278. __IO uint32_t IP[8]; /*!< Offset: 0x300 (R/W) Interrupt Priority Register */
  279. } NVIC_Type;
  280. /*@} end of group CMSIS_NVIC */
  281. /** \ingroup CMSIS_core_register
  282. \defgroup CMSIS_SCB System Control Block (SCB)
  283. \brief Type definitions for the System Control Block Registers
  284. @{
  285. */
  286. /** \brief Structure type to access the System Control Block (SCB).
  287. */
  288. typedef struct
  289. {
  290. __I uint32_t CPUID; /*!< Offset: 0x000 (R/ ) CPUID Base Register */
  291. __IO uint32_t ICSR; /*!< Offset: 0x004 (R/W) Interrupt Control and State Register */
  292. uint32_t RESERVED0;
  293. __IO uint32_t AIRCR; /*!< Offset: 0x00C (R/W) Application Interrupt and Reset Control Register */
  294. __IO uint32_t SCR; /*!< Offset: 0x010 (R/W) System Control Register */
  295. __IO uint32_t CCR; /*!< Offset: 0x014 (R/W) Configuration Control Register */
  296. uint32_t RESERVED1;
  297. __IO uint32_t SHP[2]; /*!< Offset: 0x01C (R/W) System Handlers Priority Registers. [0] is RESERVED */
  298. __IO uint32_t SHCSR; /*!< Offset: 0x024 (R/W) System Handler Control and State Register */
  299. } SCB_Type;
  300. /* SCB CPUID Register Definitions */
  301. #define SCB_CPUID_IMPLEMENTER_Pos 24 /*!< SCB CPUID: IMPLEMENTER Position */
  302. #define SCB_CPUID_IMPLEMENTER_Msk (0xFFUL << SCB_CPUID_IMPLEMENTER_Pos) /*!< SCB CPUID: IMPLEMENTER Mask */
  303. #define SCB_CPUID_VARIANT_Pos 20 /*!< SCB CPUID: VARIANT Position */
  304. #define SCB_CPUID_VARIANT_Msk (0xFUL << SCB_CPUID_VARIANT_Pos) /*!< SCB CPUID: VARIANT Mask */
  305. #define SCB_CPUID_ARCHITECTURE_Pos 16 /*!< SCB CPUID: ARCHITECTURE Position */
  306. #define SCB_CPUID_ARCHITECTURE_Msk (0xFUL << SCB_CPUID_ARCHITECTURE_Pos) /*!< SCB CPUID: ARCHITECTURE Mask */
  307. #define SCB_CPUID_PARTNO_Pos 4 /*!< SCB CPUID: PARTNO Position */
  308. #define SCB_CPUID_PARTNO_Msk (0xFFFUL << SCB_CPUID_PARTNO_Pos) /*!< SCB CPUID: PARTNO Mask */
  309. #define SCB_CPUID_REVISION_Pos 0 /*!< SCB CPUID: REVISION Position */
  310. #define SCB_CPUID_REVISION_Msk (0xFUL /*<< SCB_CPUID_REVISION_Pos*/) /*!< SCB CPUID: REVISION Mask */
  311. /* SCB Interrupt Control State Register Definitions */
  312. #define SCB_ICSR_NMIPENDSET_Pos 31 /*!< SCB ICSR: NMIPENDSET Position */
  313. #define SCB_ICSR_NMIPENDSET_Msk (1UL << SCB_ICSR_NMIPENDSET_Pos) /*!< SCB ICSR: NMIPENDSET Mask */
  314. #define SCB_ICSR_PENDSVSET_Pos 28 /*!< SCB ICSR: PENDSVSET Position */
  315. #define SCB_ICSR_PENDSVSET_Msk (1UL << SCB_ICSR_PENDSVSET_Pos) /*!< SCB ICSR: PENDSVSET Mask */
  316. #define SCB_ICSR_PENDSVCLR_Pos 27 /*!< SCB ICSR: PENDSVCLR Position */
  317. #define SCB_ICSR_PENDSVCLR_Msk (1UL << SCB_ICSR_PENDSVCLR_Pos) /*!< SCB ICSR: PENDSVCLR Mask */
  318. #define SCB_ICSR_PENDSTSET_Pos 26 /*!< SCB ICSR: PENDSTSET Position */
  319. #define SCB_ICSR_PENDSTSET_Msk (1UL << SCB_ICSR_PENDSTSET_Pos) /*!< SCB ICSR: PENDSTSET Mask */
  320. #define SCB_ICSR_PENDSTCLR_Pos 25 /*!< SCB ICSR: PENDSTCLR Position */
  321. #define SCB_ICSR_PENDSTCLR_Msk (1UL << SCB_ICSR_PENDSTCLR_Pos) /*!< SCB ICSR: PENDSTCLR Mask */
  322. #define SCB_ICSR_ISRPREEMPT_Pos 23 /*!< SCB ICSR: ISRPREEMPT Position */
  323. #define SCB_ICSR_ISRPREEMPT_Msk (1UL << SCB_ICSR_ISRPREEMPT_Pos) /*!< SCB ICSR: ISRPREEMPT Mask */
  324. #define SCB_ICSR_ISRPENDING_Pos 22 /*!< SCB ICSR: ISRPENDING Position */
  325. #define SCB_ICSR_ISRPENDING_Msk (1UL << SCB_ICSR_ISRPENDING_Pos) /*!< SCB ICSR: ISRPENDING Mask */
  326. #define SCB_ICSR_VECTPENDING_Pos 12 /*!< SCB ICSR: VECTPENDING Position */
  327. #define SCB_ICSR_VECTPENDING_Msk (0x1FFUL << SCB_ICSR_VECTPENDING_Pos) /*!< SCB ICSR: VECTPENDING Mask */
  328. #define SCB_ICSR_VECTACTIVE_Pos 0 /*!< SCB ICSR: VECTACTIVE Position */
  329. #define SCB_ICSR_VECTACTIVE_Msk (0x1FFUL /*<< SCB_ICSR_VECTACTIVE_Pos*/) /*!< SCB ICSR: VECTACTIVE Mask */
  330. /* SCB Application Interrupt and Reset Control Register Definitions */
  331. #define SCB_AIRCR_VECTKEY_Pos 16 /*!< SCB AIRCR: VECTKEY Position */
  332. #define SCB_AIRCR_VECTKEY_Msk (0xFFFFUL << SCB_AIRCR_VECTKEY_Pos) /*!< SCB AIRCR: VECTKEY Mask */
  333. #define SCB_AIRCR_VECTKEYSTAT_Pos 16 /*!< SCB AIRCR: VECTKEYSTAT Position */
  334. #define SCB_AIRCR_VECTKEYSTAT_Msk (0xFFFFUL << SCB_AIRCR_VECTKEYSTAT_Pos) /*!< SCB AIRCR: VECTKEYSTAT Mask */
  335. #define SCB_AIRCR_ENDIANESS_Pos 15 /*!< SCB AIRCR: ENDIANESS Position */
  336. #define SCB_AIRCR_ENDIANESS_Msk (1UL << SCB_AIRCR_ENDIANESS_Pos) /*!< SCB AIRCR: ENDIANESS Mask */
  337. #define SCB_AIRCR_SYSRESETREQ_Pos 2 /*!< SCB AIRCR: SYSRESETREQ Position */
  338. #define SCB_AIRCR_SYSRESETREQ_Msk (1UL << SCB_AIRCR_SYSRESETREQ_Pos) /*!< SCB AIRCR: SYSRESETREQ Mask */
  339. #define SCB_AIRCR_VECTCLRACTIVE_Pos 1 /*!< SCB AIRCR: VECTCLRACTIVE Position */
  340. #define SCB_AIRCR_VECTCLRACTIVE_Msk (1UL << SCB_AIRCR_VECTCLRACTIVE_Pos) /*!< SCB AIRCR: VECTCLRACTIVE Mask */
  341. /* SCB System Control Register Definitions */
  342. #define SCB_SCR_SEVONPEND_Pos 4 /*!< SCB SCR: SEVONPEND Position */
  343. #define SCB_SCR_SEVONPEND_Msk (1UL << SCB_SCR_SEVONPEND_Pos) /*!< SCB SCR: SEVONPEND Mask */
  344. #define SCB_SCR_SLEEPDEEP_Pos 2 /*!< SCB SCR: SLEEPDEEP Position */
  345. #define SCB_SCR_SLEEPDEEP_Msk (1UL << SCB_SCR_SLEEPDEEP_Pos) /*!< SCB SCR: SLEEPDEEP Mask */
  346. #define SCB_SCR_SLEEPONEXIT_Pos 1 /*!< SCB SCR: SLEEPONEXIT Position */
  347. #define SCB_SCR_SLEEPONEXIT_Msk (1UL << SCB_SCR_SLEEPONEXIT_Pos) /*!< SCB SCR: SLEEPONEXIT Mask */
  348. /* SCB Configuration Control Register Definitions */
  349. #define SCB_CCR_STKALIGN_Pos 9 /*!< SCB CCR: STKALIGN Position */
  350. #define SCB_CCR_STKALIGN_Msk (1UL << SCB_CCR_STKALIGN_Pos) /*!< SCB CCR: STKALIGN Mask */
  351. #define SCB_CCR_UNALIGN_TRP_Pos 3 /*!< SCB CCR: UNALIGN_TRP Position */
  352. #define SCB_CCR_UNALIGN_TRP_Msk (1UL << SCB_CCR_UNALIGN_TRP_Pos) /*!< SCB CCR: UNALIGN_TRP Mask */
  353. /* SCB System Handler Control and State Register Definitions */
  354. #define SCB_SHCSR_SVCALLPENDED_Pos 15 /*!< SCB SHCSR: SVCALLPENDED Position */
  355. #define SCB_SHCSR_SVCALLPENDED_Msk (1UL << SCB_SHCSR_SVCALLPENDED_Pos) /*!< SCB SHCSR: SVCALLPENDED Mask */
  356. /*@} end of group CMSIS_SCB */
  357. /** \ingroup CMSIS_core_register
  358. \defgroup CMSIS_SysTick System Tick Timer (SysTick)
  359. \brief Type definitions for the System Timer Registers.
  360. @{
  361. */
  362. /** \brief Structure type to access the System Timer (SysTick).
  363. */
  364. typedef struct
  365. {
  366. __IO uint32_t CTRL; /*!< Offset: 0x000 (R/W) SysTick Control and Status Register */
  367. __IO uint32_t LOAD; /*!< Offset: 0x004 (R/W) SysTick Reload Value Register */
  368. __IO uint32_t VAL; /*!< Offset: 0x008 (R/W) SysTick Current Value Register */
  369. __I uint32_t CALIB; /*!< Offset: 0x00C (R/ ) SysTick Calibration Register */
  370. } SysTick_Type;
  371. /* SysTick Control / Status Register Definitions */
  372. #define SysTick_CTRL_COUNTFLAG_Pos 16 /*!< SysTick CTRL: COUNTFLAG Position */
  373. #define SysTick_CTRL_COUNTFLAG_Msk (1UL << SysTick_CTRL_COUNTFLAG_Pos) /*!< SysTick CTRL: COUNTFLAG Mask */
  374. #define SysTick_CTRL_CLKSOURCE_Pos 2 /*!< SysTick CTRL: CLKSOURCE Position */
  375. #define SysTick_CTRL_CLKSOURCE_Msk (1UL << SysTick_CTRL_CLKSOURCE_Pos) /*!< SysTick CTRL: CLKSOURCE Mask */
  376. #define SysTick_CTRL_TICKINT_Pos 1 /*!< SysTick CTRL: TICKINT Position */
  377. #define SysTick_CTRL_TICKINT_Msk (1UL << SysTick_CTRL_TICKINT_Pos) /*!< SysTick CTRL: TICKINT Mask */
  378. #define SysTick_CTRL_ENABLE_Pos 0 /*!< SysTick CTRL: ENABLE Position */
  379. #define SysTick_CTRL_ENABLE_Msk (1UL /*<< SysTick_CTRL_ENABLE_Pos*/) /*!< SysTick CTRL: ENABLE Mask */
  380. /* SysTick Reload Register Definitions */
  381. #define SysTick_LOAD_RELOAD_Pos 0 /*!< SysTick LOAD: RELOAD Position */
  382. #define SysTick_LOAD_RELOAD_Msk (0xFFFFFFUL /*<< SysTick_LOAD_RELOAD_Pos*/) /*!< SysTick LOAD: RELOAD Mask */
  383. /* SysTick Current Register Definitions */
  384. #define SysTick_VAL_CURRENT_Pos 0 /*!< SysTick VAL: CURRENT Position */
  385. #define SysTick_VAL_CURRENT_Msk (0xFFFFFFUL /*<< SysTick_VAL_CURRENT_Pos*/) /*!< SysTick VAL: CURRENT Mask */
  386. /* SysTick Calibration Register Definitions */
  387. #define SysTick_CALIB_NOREF_Pos 31 /*!< SysTick CALIB: NOREF Position */
  388. #define SysTick_CALIB_NOREF_Msk (1UL << SysTick_CALIB_NOREF_Pos) /*!< SysTick CALIB: NOREF Mask */
  389. #define SysTick_CALIB_SKEW_Pos 30 /*!< SysTick CALIB: SKEW Position */
  390. #define SysTick_CALIB_SKEW_Msk (1UL << SysTick_CALIB_SKEW_Pos) /*!< SysTick CALIB: SKEW Mask */
  391. #define SysTick_CALIB_TENMS_Pos 0 /*!< SysTick CALIB: TENMS Position */
  392. #define SysTick_CALIB_TENMS_Msk (0xFFFFFFUL /*<< SysTick_CALIB_TENMS_Pos*/) /*!< SysTick CALIB: TENMS Mask */
  393. /*@} end of group CMSIS_SysTick */
  394. /** \ingroup CMSIS_core_register
  395. \defgroup CMSIS_CoreDebug Core Debug Registers (CoreDebug)
  396. \brief Cortex-M0 Core Debug Registers (DCB registers, SHCSR, and DFSR)
  397. are only accessible over DAP and not via processor. Therefore
  398. they are not covered by the Cortex-M0 header file.
  399. @{
  400. */
  401. /*@} end of group CMSIS_CoreDebug */
  402. /** \ingroup CMSIS_core_register
  403. \defgroup CMSIS_core_base Core Definitions
  404. \brief Definitions for base addresses, unions, and structures.
  405. @{
  406. */
  407. /* Memory mapping of Cortex-M0 Hardware */
  408. #define SCS_BASE (0xE000E000UL) /*!< System Control Space Base Address */
  409. #define SysTick_BASE (SCS_BASE + 0x0010UL) /*!< SysTick Base Address */
  410. #define NVIC_BASE (SCS_BASE + 0x0100UL) /*!< NVIC Base Address */
  411. #define SCB_BASE (SCS_BASE + 0x0D00UL) /*!< System Control Block Base Address */
  412. #define SCB ((SCB_Type *) SCB_BASE ) /*!< SCB configuration struct */
  413. #define SysTick ((SysTick_Type *) SysTick_BASE ) /*!< SysTick configuration struct */
  414. #define NVIC ((NVIC_Type *) NVIC_BASE ) /*!< NVIC configuration struct */
  415. /*@} */
  416. /*******************************************************************************
  417. * Hardware Abstraction Layer
  418. Core Function Interface contains:
  419. - Core NVIC Functions
  420. - Core SysTick Functions
  421. - Core Register Access Functions
  422. ******************************************************************************/
  423. /** \defgroup CMSIS_Core_FunctionInterface Functions and Instructions Reference
  424. */
  425. /* ########################## NVIC functions #################################### */
  426. /** \ingroup CMSIS_Core_FunctionInterface
  427. \defgroup CMSIS_Core_NVICFunctions NVIC Functions
  428. \brief Functions that manage interrupts and exceptions via the NVIC.
  429. @{
  430. */
  431. /* Interrupt Priorities are WORD accessible only under ARMv6M */
  432. /* The following MACROS handle generation of the register offset and byte masks */
  433. #define _BIT_SHIFT(IRQn) ( ((((uint32_t)(int32_t)(IRQn)) ) & 0x03UL) * 8UL)
  434. #define _SHP_IDX(IRQn) ( (((((uint32_t)(int32_t)(IRQn)) & 0x0FUL)-8UL) >> 2UL) )
  435. #define _IP_IDX(IRQn) ( (((uint32_t)(int32_t)(IRQn)) >> 2UL) )
  436. /** \brief Enable External Interrupt
  437. The function enables a device-specific interrupt in the NVIC interrupt controller.
  438. \param [in] IRQn External interrupt number. Value cannot be negative.
  439. */
  440. __STATIC_INLINE void NVIC_EnableIRQ(IRQn_Type IRQn)
  441. {
  442. NVIC->ISER[0] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL));
  443. }
  444. /** \brief Disable External Interrupt
  445. The function disables a device-specific interrupt in the NVIC interrupt controller.
  446. \param [in] IRQn External interrupt number. Value cannot be negative.
  447. */
  448. __STATIC_INLINE void NVIC_DisableIRQ(IRQn_Type IRQn)
  449. {
  450. NVIC->ICER[0] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL));
  451. }
  452. /** \brief Get Pending Interrupt
  453. The function reads the pending register in the NVIC and returns the pending bit
  454. for the specified interrupt.
  455. \param [in] IRQn Interrupt number.
  456. \return 0 Interrupt status is not pending.
  457. \return 1 Interrupt status is pending.
  458. */
  459. __STATIC_INLINE uint32_t NVIC_GetPendingIRQ(IRQn_Type IRQn)
  460. {
  461. return((uint32_t)(((NVIC->ISPR[0] & (1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL))) != 0UL) ? 1UL : 0UL));
  462. }
  463. /** \brief Set Pending Interrupt
  464. The function sets the pending bit of an external interrupt.
  465. \param [in] IRQn Interrupt number. Value cannot be negative.
  466. */
  467. __STATIC_INLINE void NVIC_SetPendingIRQ(IRQn_Type IRQn)
  468. {
  469. NVIC->ISPR[0] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL));
  470. }
  471. /** \brief Clear Pending Interrupt
  472. The function clears the pending bit of an external interrupt.
  473. \param [in] IRQn External interrupt number. Value cannot be negative.
  474. */
  475. __STATIC_INLINE void NVIC_ClearPendingIRQ(IRQn_Type IRQn)
  476. {
  477. NVIC->ICPR[0] = (uint32_t)(1UL << (((uint32_t)(int32_t)IRQn) & 0x1FUL));
  478. }
  479. /** \brief Set Interrupt Priority
  480. The function sets the priority of an interrupt.
  481. \note The priority cannot be set for every core interrupt.
  482. \param [in] IRQn Interrupt number.
  483. \param [in] priority Priority to set.
  484. */
  485. __STATIC_INLINE void NVIC_SetPriority(IRQn_Type IRQn, uint32_t priority)
  486. {
  487. if((int32_t)(IRQn) < 0) {
  488. SCB->SHP[_SHP_IDX(IRQn)] = ((uint32_t)(SCB->SHP[_SHP_IDX(IRQn)] & ~(0xFFUL << _BIT_SHIFT(IRQn))) |
  489. (((priority << (8 - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL) << _BIT_SHIFT(IRQn)));
  490. }
  491. else {
  492. NVIC->IP[_IP_IDX(IRQn)] = ((uint32_t)(NVIC->IP[_IP_IDX(IRQn)] & ~(0xFFUL << _BIT_SHIFT(IRQn))) |
  493. (((priority << (8 - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL) << _BIT_SHIFT(IRQn)));
  494. }
  495. }
  496. /** \brief Get Interrupt Priority
  497. The function reads the priority of an interrupt. The interrupt
  498. number can be positive to specify an external (device specific)
  499. interrupt, or negative to specify an internal (core) interrupt.
  500. \param [in] IRQn Interrupt number.
  501. \return Interrupt Priority. Value is aligned automatically to the implemented
  502. priority bits of the microcontroller.
  503. */
  504. __STATIC_INLINE uint32_t NVIC_GetPriority(IRQn_Type IRQn)
  505. {
  506. if((int32_t)(IRQn) < 0) {
  507. return((uint32_t)(((SCB->SHP[_SHP_IDX(IRQn)] >> _BIT_SHIFT(IRQn) ) & (uint32_t)0xFFUL) >> (8 - __NVIC_PRIO_BITS)));
  508. }
  509. else {
  510. return((uint32_t)(((NVIC->IP[ _IP_IDX(IRQn)] >> _BIT_SHIFT(IRQn) ) & (uint32_t)0xFFUL) >> (8 - __NVIC_PRIO_BITS)));
  511. }
  512. }
  513. /** \brief System Reset
  514. The function initiates a system reset request to reset the MCU.
  515. */
  516. __STATIC_INLINE void NVIC_SystemReset(void)
  517. {
  518. __DSB(); /* Ensure all outstanding memory accesses included
  519. buffered write are completed before reset */
  520. SCB->AIRCR = ((0x5FAUL << SCB_AIRCR_VECTKEY_Pos) |
  521. SCB_AIRCR_SYSRESETREQ_Msk);
  522. __DSB(); /* Ensure completion of memory access */
  523. while(1) { __NOP(); } /* wait until reset */
  524. }
  525. /*@} end of CMSIS_Core_NVICFunctions */
  526. /* ################################## SysTick function ############################################ */
  527. /** \ingroup CMSIS_Core_FunctionInterface
  528. \defgroup CMSIS_Core_SysTickFunctions SysTick Functions
  529. \brief Functions that configure the System.
  530. @{
  531. */
  532. #if (__Vendor_SysTickConfig == 0)
  533. /** \brief System Tick Configuration
  534. The function initializes the System Timer and its interrupt, and starts the System Tick Timer.
  535. Counter is in free running mode to generate periodic interrupts.
  536. \param [in] ticks Number of ticks between two interrupts.
  537. \return 0 Function succeeded.
  538. \return 1 Function failed.
  539. \note When the variable <b>__Vendor_SysTickConfig</b> is set to 1, then the
  540. function <b>SysTick_Config</b> is not included. In this case, the file <b><i>device</i>.h</b>
  541. must contain a vendor-specific implementation of this function.
  542. */
  543. __STATIC_INLINE uint32_t SysTick_Config(uint32_t ticks)
  544. {
  545. if ((ticks - 1UL) > SysTick_LOAD_RELOAD_Msk) { return (1UL); } /* Reload value impossible */
  546. SysTick->LOAD = (uint32_t)(ticks - 1UL); /* set reload register */
  547. NVIC_SetPriority (SysTick_IRQn, (1UL << __NVIC_PRIO_BITS) - 1UL); /* set Priority for Systick Interrupt */
  548. SysTick->VAL = 0UL; /* Load the SysTick Counter Value */
  549. SysTick->CTRL = SysTick_CTRL_CLKSOURCE_Msk |
  550. SysTick_CTRL_TICKINT_Msk |
  551. SysTick_CTRL_ENABLE_Msk; /* Enable SysTick IRQ and SysTick Timer */
  552. return (0UL); /* Function successful */
  553. }
  554. #endif
  555. /*@} end of CMSIS_Core_SysTickFunctions */
  556. #ifdef __cplusplus
  557. }
  558. #endif
  559. #endif /* __CORE_CM0_H_DEPENDANT */
  560. #endif /* __CMSIS_GENERIC */