The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

mbed 2

This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.

Committer:
<>
Date:
Tue Mar 14 16:20:51 2017 +0000
Revision:
138:093f2bd7b9eb
Parent:
110:165afa46840b
Release 138 of the mbed library

Ports for Upcoming Targets


Fixes and Changes

3716: fix for issue #3715: correction in startup files for ARM and IAR, alignment of system_stm32f429xx.c files https://github.com/ARMmbed/mbed-os/pull/3716
3741: STM32 remove warning in hal_tick_32b.c file https://github.com/ARMmbed/mbed-os/pull/3741
3780: STM32L4 : Fix GPIO G port compatibility https://github.com/ARMmbed/mbed-os/pull/3780
3831: NCS36510: SPISLAVE enabled (Conflict resolved) https://github.com/ARMmbed/mbed-os/pull/3831
3836: Allow to redefine nRF's PSTORAGE_NUM_OF_PAGES outside of the mbed-os https://github.com/ARMmbed/mbed-os/pull/3836
3840: STM32: gpio SPEED - always set High Speed by default https://github.com/ARMmbed/mbed-os/pull/3840
3844: STM32 GPIO: Typo correction. Update comment (GPIO_IP_WITHOUT_BRR) https://github.com/ARMmbed/mbed-os/pull/3844
3850: STM32: change spi error to debug warning https://github.com/ARMmbed/mbed-os/pull/3850
3860: Define GPIO_IP_WITHOUT_BRR for xDot platform https://github.com/ARMmbed/mbed-os/pull/3860
3880: DISCO_F469NI: allow the use of CAN2 instance when CAN1 is not activated https://github.com/ARMmbed/mbed-os/pull/3880
3795: Fix pwm period calc https://github.com/ARMmbed/mbed-os/pull/3795
3828: STM32 CAN API: correct format and type https://github.com/ARMmbed/mbed-os/pull/3828
3842: TARGET_NRF: corrected spi_init() to properly handle re-initialization https://github.com/ARMmbed/mbed-os/pull/3842
3843: STM32L476xG: set APB2 clock to 80MHz (instead of 40MHz) https://github.com/ARMmbed/mbed-os/pull/3843
3879: NUCLEO_F446ZE: Add missing AnalogIn pins on PF_3, PF_5 and PF_10. https://github.com/ARMmbed/mbed-os/pull/3879
3902: Fix heap and stack size for NUCLEO_F746ZG https://github.com/ARMmbed/mbed-os/pull/3902
3829: can_write(): return error code when no tx mailboxes are available https://github.com/ARMmbed/mbed-os/pull/3829

Who changed what in which revision?

UserRevisionLine numberNew contents of line
emilmont 79:0c05e21ae27e 1 /**************************************************************************//**
emilmont 79:0c05e21ae27e 2 * @file core_cmFunc.h
emilmont 79:0c05e21ae27e 3 * @brief CMSIS Cortex-M Core Function Access Header File
Kojto 110:165afa46840b 4 * @version V4.10
Kojto 110:165afa46840b 5 * @date 18. March 2015
emilmont 79:0c05e21ae27e 6 *
emilmont 79:0c05e21ae27e 7 * @note
emilmont 79:0c05e21ae27e 8 *
emilmont 79:0c05e21ae27e 9 ******************************************************************************/
Kojto 110:165afa46840b 10 /* Copyright (c) 2009 - 2015 ARM LIMITED
emilmont 79:0c05e21ae27e 11
emilmont 79:0c05e21ae27e 12 All rights reserved.
emilmont 79:0c05e21ae27e 13 Redistribution and use in source and binary forms, with or without
emilmont 79:0c05e21ae27e 14 modification, are permitted provided that the following conditions are met:
emilmont 79:0c05e21ae27e 15 - Redistributions of source code must retain the above copyright
emilmont 79:0c05e21ae27e 16 notice, this list of conditions and the following disclaimer.
emilmont 79:0c05e21ae27e 17 - Redistributions in binary form must reproduce the above copyright
emilmont 79:0c05e21ae27e 18 notice, this list of conditions and the following disclaimer in the
emilmont 79:0c05e21ae27e 19 documentation and/or other materials provided with the distribution.
emilmont 79:0c05e21ae27e 20 - Neither the name of ARM nor the names of its contributors may be used
emilmont 79:0c05e21ae27e 21 to endorse or promote products derived from this software without
emilmont 79:0c05e21ae27e 22 specific prior written permission.
emilmont 79:0c05e21ae27e 23 *
emilmont 79:0c05e21ae27e 24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
emilmont 79:0c05e21ae27e 25 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
emilmont 79:0c05e21ae27e 26 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
emilmont 79:0c05e21ae27e 27 ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE
emilmont 79:0c05e21ae27e 28 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
emilmont 79:0c05e21ae27e 29 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
emilmont 79:0c05e21ae27e 30 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
emilmont 79:0c05e21ae27e 31 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
emilmont 79:0c05e21ae27e 32 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
emilmont 79:0c05e21ae27e 33 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
emilmont 79:0c05e21ae27e 34 POSSIBILITY OF SUCH DAMAGE.
emilmont 79:0c05e21ae27e 35 ---------------------------------------------------------------------------*/
emilmont 79:0c05e21ae27e 36
emilmont 79:0c05e21ae27e 37
emilmont 79:0c05e21ae27e 38 #ifndef __CORE_CMFUNC_H
emilmont 79:0c05e21ae27e 39 #define __CORE_CMFUNC_H
emilmont 79:0c05e21ae27e 40
emilmont 79:0c05e21ae27e 41
emilmont 79:0c05e21ae27e 42 /* ########################### Core Function Access ########################### */
emilmont 79:0c05e21ae27e 43 /** \ingroup CMSIS_Core_FunctionInterface
emilmont 79:0c05e21ae27e 44 \defgroup CMSIS_Core_RegAccFunctions CMSIS Core Register Access Functions
emilmont 79:0c05e21ae27e 45 @{
emilmont 79:0c05e21ae27e 46 */
emilmont 79:0c05e21ae27e 47
emilmont 79:0c05e21ae27e 48 #if defined ( __CC_ARM ) /*------------------RealView Compiler -----------------*/
emilmont 79:0c05e21ae27e 49 /* ARM armcc specific functions */
emilmont 79:0c05e21ae27e 50
emilmont 79:0c05e21ae27e 51 #if (__ARMCC_VERSION < 400677)
emilmont 79:0c05e21ae27e 52 #error "Please use ARM Compiler Toolchain V4.0.677 or later!"
emilmont 79:0c05e21ae27e 53 #endif
emilmont 79:0c05e21ae27e 54
emilmont 79:0c05e21ae27e 55 /* intrinsic void __enable_irq(); */
emilmont 79:0c05e21ae27e 56 /* intrinsic void __disable_irq(); */
emilmont 79:0c05e21ae27e 57
emilmont 79:0c05e21ae27e 58 /** \brief Get Control Register
emilmont 79:0c05e21ae27e 59
emilmont 79:0c05e21ae27e 60 This function returns the content of the Control Register.
emilmont 79:0c05e21ae27e 61
emilmont 79:0c05e21ae27e 62 \return Control Register value
emilmont 79:0c05e21ae27e 63 */
emilmont 79:0c05e21ae27e 64 __STATIC_INLINE uint32_t __get_CONTROL(void)
emilmont 79:0c05e21ae27e 65 {
emilmont 79:0c05e21ae27e 66 register uint32_t __regControl __ASM("control");
emilmont 79:0c05e21ae27e 67 return(__regControl);
emilmont 79:0c05e21ae27e 68 }
emilmont 79:0c05e21ae27e 69
emilmont 79:0c05e21ae27e 70
emilmont 79:0c05e21ae27e 71 /** \brief Set Control Register
emilmont 79:0c05e21ae27e 72
emilmont 79:0c05e21ae27e 73 This function writes the given value to the Control Register.
emilmont 79:0c05e21ae27e 74
emilmont 79:0c05e21ae27e 75 \param [in] control Control Register value to set
emilmont 79:0c05e21ae27e 76 */
emilmont 79:0c05e21ae27e 77 __STATIC_INLINE void __set_CONTROL(uint32_t control)
emilmont 79:0c05e21ae27e 78 {
emilmont 79:0c05e21ae27e 79 register uint32_t __regControl __ASM("control");
emilmont 79:0c05e21ae27e 80 __regControl = control;
emilmont 79:0c05e21ae27e 81 }
emilmont 79:0c05e21ae27e 82
emilmont 79:0c05e21ae27e 83
emilmont 79:0c05e21ae27e 84 /** \brief Get IPSR Register
emilmont 79:0c05e21ae27e 85
emilmont 79:0c05e21ae27e 86 This function returns the content of the IPSR Register.
emilmont 79:0c05e21ae27e 87
emilmont 79:0c05e21ae27e 88 \return IPSR Register value
emilmont 79:0c05e21ae27e 89 */
emilmont 79:0c05e21ae27e 90 __STATIC_INLINE uint32_t __get_IPSR(void)
emilmont 79:0c05e21ae27e 91 {
emilmont 79:0c05e21ae27e 92 register uint32_t __regIPSR __ASM("ipsr");
emilmont 79:0c05e21ae27e 93 return(__regIPSR);
emilmont 79:0c05e21ae27e 94 }
emilmont 79:0c05e21ae27e 95
emilmont 79:0c05e21ae27e 96
emilmont 79:0c05e21ae27e 97 /** \brief Get APSR Register
emilmont 79:0c05e21ae27e 98
emilmont 79:0c05e21ae27e 99 This function returns the content of the APSR Register.
emilmont 79:0c05e21ae27e 100
emilmont 79:0c05e21ae27e 101 \return APSR Register value
emilmont 79:0c05e21ae27e 102 */
emilmont 79:0c05e21ae27e 103 __STATIC_INLINE uint32_t __get_APSR(void)
emilmont 79:0c05e21ae27e 104 {
emilmont 79:0c05e21ae27e 105 register uint32_t __regAPSR __ASM("apsr");
emilmont 79:0c05e21ae27e 106 return(__regAPSR);
emilmont 79:0c05e21ae27e 107 }
emilmont 79:0c05e21ae27e 108
emilmont 79:0c05e21ae27e 109
emilmont 79:0c05e21ae27e 110 /** \brief Get xPSR Register
emilmont 79:0c05e21ae27e 111
emilmont 79:0c05e21ae27e 112 This function returns the content of the xPSR Register.
emilmont 79:0c05e21ae27e 113
emilmont 79:0c05e21ae27e 114 \return xPSR Register value
emilmont 79:0c05e21ae27e 115 */
emilmont 79:0c05e21ae27e 116 __STATIC_INLINE uint32_t __get_xPSR(void)
emilmont 79:0c05e21ae27e 117 {
emilmont 79:0c05e21ae27e 118 register uint32_t __regXPSR __ASM("xpsr");
emilmont 79:0c05e21ae27e 119 return(__regXPSR);
emilmont 79:0c05e21ae27e 120 }
emilmont 79:0c05e21ae27e 121
emilmont 79:0c05e21ae27e 122
emilmont 79:0c05e21ae27e 123 /** \brief Get Process Stack Pointer
emilmont 79:0c05e21ae27e 124
emilmont 79:0c05e21ae27e 125 This function returns the current value of the Process Stack Pointer (PSP).
emilmont 79:0c05e21ae27e 126
emilmont 79:0c05e21ae27e 127 \return PSP Register value
emilmont 79:0c05e21ae27e 128 */
emilmont 79:0c05e21ae27e 129 __STATIC_INLINE uint32_t __get_PSP(void)
emilmont 79:0c05e21ae27e 130 {
emilmont 79:0c05e21ae27e 131 register uint32_t __regProcessStackPointer __ASM("psp");
emilmont 79:0c05e21ae27e 132 return(__regProcessStackPointer);
emilmont 79:0c05e21ae27e 133 }
emilmont 79:0c05e21ae27e 134
emilmont 79:0c05e21ae27e 135
emilmont 79:0c05e21ae27e 136 /** \brief Set Process Stack Pointer
emilmont 79:0c05e21ae27e 137
emilmont 79:0c05e21ae27e 138 This function assigns the given value to the Process Stack Pointer (PSP).
emilmont 79:0c05e21ae27e 139
emilmont 79:0c05e21ae27e 140 \param [in] topOfProcStack Process Stack Pointer value to set
emilmont 79:0c05e21ae27e 141 */
emilmont 79:0c05e21ae27e 142 __STATIC_INLINE void __set_PSP(uint32_t topOfProcStack)
emilmont 79:0c05e21ae27e 143 {
emilmont 79:0c05e21ae27e 144 register uint32_t __regProcessStackPointer __ASM("psp");
emilmont 79:0c05e21ae27e 145 __regProcessStackPointer = topOfProcStack;
emilmont 79:0c05e21ae27e 146 }
emilmont 79:0c05e21ae27e 147
emilmont 79:0c05e21ae27e 148
emilmont 79:0c05e21ae27e 149 /** \brief Get Main Stack Pointer
emilmont 79:0c05e21ae27e 150
emilmont 79:0c05e21ae27e 151 This function returns the current value of the Main Stack Pointer (MSP).
emilmont 79:0c05e21ae27e 152
emilmont 79:0c05e21ae27e 153 \return MSP Register value
emilmont 79:0c05e21ae27e 154 */
emilmont 79:0c05e21ae27e 155 __STATIC_INLINE uint32_t __get_MSP(void)
emilmont 79:0c05e21ae27e 156 {
emilmont 79:0c05e21ae27e 157 register uint32_t __regMainStackPointer __ASM("msp");
emilmont 79:0c05e21ae27e 158 return(__regMainStackPointer);
emilmont 79:0c05e21ae27e 159 }
emilmont 79:0c05e21ae27e 160
emilmont 79:0c05e21ae27e 161
emilmont 79:0c05e21ae27e 162 /** \brief Set Main Stack Pointer
emilmont 79:0c05e21ae27e 163
emilmont 79:0c05e21ae27e 164 This function assigns the given value to the Main Stack Pointer (MSP).
emilmont 79:0c05e21ae27e 165
emilmont 79:0c05e21ae27e 166 \param [in] topOfMainStack Main Stack Pointer value to set
emilmont 79:0c05e21ae27e 167 */
emilmont 79:0c05e21ae27e 168 __STATIC_INLINE void __set_MSP(uint32_t topOfMainStack)
emilmont 79:0c05e21ae27e 169 {
emilmont 79:0c05e21ae27e 170 register uint32_t __regMainStackPointer __ASM("msp");
emilmont 79:0c05e21ae27e 171 __regMainStackPointer = topOfMainStack;
emilmont 79:0c05e21ae27e 172 }
emilmont 79:0c05e21ae27e 173
emilmont 79:0c05e21ae27e 174
emilmont 79:0c05e21ae27e 175 /** \brief Get Priority Mask
emilmont 79:0c05e21ae27e 176
emilmont 79:0c05e21ae27e 177 This function returns the current state of the priority mask bit from the Priority Mask Register.
emilmont 79:0c05e21ae27e 178
emilmont 79:0c05e21ae27e 179 \return Priority Mask value
emilmont 79:0c05e21ae27e 180 */
emilmont 79:0c05e21ae27e 181 __STATIC_INLINE uint32_t __get_PRIMASK(void)
emilmont 79:0c05e21ae27e 182 {
emilmont 79:0c05e21ae27e 183 register uint32_t __regPriMask __ASM("primask");
emilmont 79:0c05e21ae27e 184 return(__regPriMask);
emilmont 79:0c05e21ae27e 185 }
emilmont 79:0c05e21ae27e 186
emilmont 79:0c05e21ae27e 187
emilmont 79:0c05e21ae27e 188 /** \brief Set Priority Mask
emilmont 79:0c05e21ae27e 189
emilmont 79:0c05e21ae27e 190 This function assigns the given value to the Priority Mask Register.
emilmont 79:0c05e21ae27e 191
emilmont 79:0c05e21ae27e 192 \param [in] priMask Priority Mask
emilmont 79:0c05e21ae27e 193 */
emilmont 79:0c05e21ae27e 194 __STATIC_INLINE void __set_PRIMASK(uint32_t priMask)
emilmont 79:0c05e21ae27e 195 {
emilmont 79:0c05e21ae27e 196 register uint32_t __regPriMask __ASM("primask");
emilmont 79:0c05e21ae27e 197 __regPriMask = (priMask);
emilmont 79:0c05e21ae27e 198 }
emilmont 79:0c05e21ae27e 199
emilmont 79:0c05e21ae27e 200
Kojto 110:165afa46840b 201 #if (__CORTEX_M >= 0x03) || (__CORTEX_SC >= 300)
emilmont 79:0c05e21ae27e 202
emilmont 79:0c05e21ae27e 203 /** \brief Enable FIQ
emilmont 79:0c05e21ae27e 204
emilmont 79:0c05e21ae27e 205 This function enables FIQ interrupts by clearing the F-bit in the CPSR.
emilmont 79:0c05e21ae27e 206 Can only be executed in Privileged modes.
emilmont 79:0c05e21ae27e 207 */
emilmont 79:0c05e21ae27e 208 #define __enable_fault_irq __enable_fiq
emilmont 79:0c05e21ae27e 209
emilmont 79:0c05e21ae27e 210
emilmont 79:0c05e21ae27e 211 /** \brief Disable FIQ
emilmont 79:0c05e21ae27e 212
emilmont 79:0c05e21ae27e 213 This function disables FIQ interrupts by setting the F-bit in the CPSR.
emilmont 79:0c05e21ae27e 214 Can only be executed in Privileged modes.
emilmont 79:0c05e21ae27e 215 */
emilmont 79:0c05e21ae27e 216 #define __disable_fault_irq __disable_fiq
emilmont 79:0c05e21ae27e 217
emilmont 79:0c05e21ae27e 218
emilmont 79:0c05e21ae27e 219 /** \brief Get Base Priority
emilmont 79:0c05e21ae27e 220
emilmont 79:0c05e21ae27e 221 This function returns the current value of the Base Priority register.
emilmont 79:0c05e21ae27e 222
emilmont 79:0c05e21ae27e 223 \return Base Priority register value
emilmont 79:0c05e21ae27e 224 */
emilmont 79:0c05e21ae27e 225 __STATIC_INLINE uint32_t __get_BASEPRI(void)
emilmont 79:0c05e21ae27e 226 {
emilmont 79:0c05e21ae27e 227 register uint32_t __regBasePri __ASM("basepri");
emilmont 79:0c05e21ae27e 228 return(__regBasePri);
emilmont 79:0c05e21ae27e 229 }
emilmont 79:0c05e21ae27e 230
emilmont 79:0c05e21ae27e 231
emilmont 79:0c05e21ae27e 232 /** \brief Set Base Priority
emilmont 79:0c05e21ae27e 233
emilmont 79:0c05e21ae27e 234 This function assigns the given value to the Base Priority register.
emilmont 79:0c05e21ae27e 235
emilmont 79:0c05e21ae27e 236 \param [in] basePri Base Priority value to set
emilmont 79:0c05e21ae27e 237 */
emilmont 79:0c05e21ae27e 238 __STATIC_INLINE void __set_BASEPRI(uint32_t basePri)
emilmont 79:0c05e21ae27e 239 {
emilmont 79:0c05e21ae27e 240 register uint32_t __regBasePri __ASM("basepri");
emilmont 79:0c05e21ae27e 241 __regBasePri = (basePri & 0xff);
emilmont 79:0c05e21ae27e 242 }
emilmont 79:0c05e21ae27e 243
emilmont 79:0c05e21ae27e 244
Kojto 110:165afa46840b 245 /** \brief Set Base Priority with condition
Kojto 110:165afa46840b 246
Kojto 110:165afa46840b 247 This function assigns the given value to the Base Priority register only if BASEPRI masking is disabled,
Kojto 110:165afa46840b 248 or the new value increases the BASEPRI priority level.
Kojto 110:165afa46840b 249
Kojto 110:165afa46840b 250 \param [in] basePri Base Priority value to set
Kojto 110:165afa46840b 251 */
Kojto 110:165afa46840b 252 __STATIC_INLINE void __set_BASEPRI_MAX(uint32_t basePri)
Kojto 110:165afa46840b 253 {
Kojto 110:165afa46840b 254 register uint32_t __regBasePriMax __ASM("basepri_max");
Kojto 110:165afa46840b 255 __regBasePriMax = (basePri & 0xff);
Kojto 110:165afa46840b 256 }
Kojto 110:165afa46840b 257
Kojto 110:165afa46840b 258
emilmont 79:0c05e21ae27e 259 /** \brief Get Fault Mask
emilmont 79:0c05e21ae27e 260
emilmont 79:0c05e21ae27e 261 This function returns the current value of the Fault Mask register.
emilmont 79:0c05e21ae27e 262
emilmont 79:0c05e21ae27e 263 \return Fault Mask register value
emilmont 79:0c05e21ae27e 264 */
emilmont 79:0c05e21ae27e 265 __STATIC_INLINE uint32_t __get_FAULTMASK(void)
emilmont 79:0c05e21ae27e 266 {
emilmont 79:0c05e21ae27e 267 register uint32_t __regFaultMask __ASM("faultmask");
emilmont 79:0c05e21ae27e 268 return(__regFaultMask);
emilmont 79:0c05e21ae27e 269 }
emilmont 79:0c05e21ae27e 270
emilmont 79:0c05e21ae27e 271
emilmont 79:0c05e21ae27e 272 /** \brief Set Fault Mask
emilmont 79:0c05e21ae27e 273
emilmont 79:0c05e21ae27e 274 This function assigns the given value to the Fault Mask register.
emilmont 79:0c05e21ae27e 275
emilmont 79:0c05e21ae27e 276 \param [in] faultMask Fault Mask value to set
emilmont 79:0c05e21ae27e 277 */
emilmont 79:0c05e21ae27e 278 __STATIC_INLINE void __set_FAULTMASK(uint32_t faultMask)
emilmont 79:0c05e21ae27e 279 {
emilmont 79:0c05e21ae27e 280 register uint32_t __regFaultMask __ASM("faultmask");
emilmont 79:0c05e21ae27e 281 __regFaultMask = (faultMask & (uint32_t)1);
emilmont 79:0c05e21ae27e 282 }
emilmont 79:0c05e21ae27e 283
Kojto 110:165afa46840b 284 #endif /* (__CORTEX_M >= 0x03) || (__CORTEX_SC >= 300) */
emilmont 79:0c05e21ae27e 285
emilmont 79:0c05e21ae27e 286
Kojto 110:165afa46840b 287 #if (__CORTEX_M == 0x04) || (__CORTEX_M == 0x07)
emilmont 79:0c05e21ae27e 288
emilmont 79:0c05e21ae27e 289 /** \brief Get FPSCR
emilmont 79:0c05e21ae27e 290
emilmont 79:0c05e21ae27e 291 This function returns the current value of the Floating Point Status/Control register.
emilmont 79:0c05e21ae27e 292
emilmont 79:0c05e21ae27e 293 \return Floating Point Status/Control register value
emilmont 79:0c05e21ae27e 294 */
emilmont 79:0c05e21ae27e 295 __STATIC_INLINE uint32_t __get_FPSCR(void)
emilmont 79:0c05e21ae27e 296 {
emilmont 79:0c05e21ae27e 297 #if (__FPU_PRESENT == 1) && (__FPU_USED == 1)
emilmont 79:0c05e21ae27e 298 register uint32_t __regfpscr __ASM("fpscr");
emilmont 79:0c05e21ae27e 299 return(__regfpscr);
emilmont 79:0c05e21ae27e 300 #else
emilmont 79:0c05e21ae27e 301 return(0);
emilmont 79:0c05e21ae27e 302 #endif
emilmont 79:0c05e21ae27e 303 }
emilmont 79:0c05e21ae27e 304
emilmont 79:0c05e21ae27e 305
emilmont 79:0c05e21ae27e 306 /** \brief Set FPSCR
emilmont 79:0c05e21ae27e 307
emilmont 79:0c05e21ae27e 308 This function assigns the given value to the Floating Point Status/Control register.
emilmont 79:0c05e21ae27e 309
emilmont 79:0c05e21ae27e 310 \param [in] fpscr Floating Point Status/Control value to set
emilmont 79:0c05e21ae27e 311 */
emilmont 79:0c05e21ae27e 312 __STATIC_INLINE void __set_FPSCR(uint32_t fpscr)
emilmont 79:0c05e21ae27e 313 {
emilmont 79:0c05e21ae27e 314 #if (__FPU_PRESENT == 1) && (__FPU_USED == 1)
emilmont 79:0c05e21ae27e 315 register uint32_t __regfpscr __ASM("fpscr");
emilmont 79:0c05e21ae27e 316 __regfpscr = (fpscr);
emilmont 79:0c05e21ae27e 317 #endif
emilmont 79:0c05e21ae27e 318 }
emilmont 79:0c05e21ae27e 319
Kojto 110:165afa46840b 320 #endif /* (__CORTEX_M == 0x04) || (__CORTEX_M == 0x07) */
emilmont 79:0c05e21ae27e 321
emilmont 79:0c05e21ae27e 322
emilmont 79:0c05e21ae27e 323 #elif defined ( __GNUC__ ) /*------------------ GNU Compiler ---------------------*/
emilmont 79:0c05e21ae27e 324 /* GNU gcc specific functions */
emilmont 79:0c05e21ae27e 325
emilmont 79:0c05e21ae27e 326 /** \brief Enable IRQ Interrupts
emilmont 79:0c05e21ae27e 327
emilmont 79:0c05e21ae27e 328 This function enables IRQ interrupts by clearing the I-bit in the CPSR.
emilmont 79:0c05e21ae27e 329 Can only be executed in Privileged modes.
emilmont 79:0c05e21ae27e 330 */
emilmont 79:0c05e21ae27e 331 __attribute__( ( always_inline ) ) __STATIC_INLINE void __enable_irq(void)
emilmont 79:0c05e21ae27e 332 {
emilmont 79:0c05e21ae27e 333 __ASM volatile ("cpsie i" : : : "memory");
emilmont 79:0c05e21ae27e 334 }
emilmont 79:0c05e21ae27e 335
emilmont 79:0c05e21ae27e 336
emilmont 79:0c05e21ae27e 337 /** \brief Disable IRQ Interrupts
emilmont 79:0c05e21ae27e 338
emilmont 79:0c05e21ae27e 339 This function disables IRQ interrupts by setting the I-bit in the CPSR.
emilmont 79:0c05e21ae27e 340 Can only be executed in Privileged modes.
emilmont 79:0c05e21ae27e 341 */
emilmont 79:0c05e21ae27e 342 __attribute__( ( always_inline ) ) __STATIC_INLINE void __disable_irq(void)
emilmont 79:0c05e21ae27e 343 {
emilmont 79:0c05e21ae27e 344 __ASM volatile ("cpsid i" : : : "memory");
emilmont 79:0c05e21ae27e 345 }
emilmont 79:0c05e21ae27e 346
emilmont 79:0c05e21ae27e 347
emilmont 79:0c05e21ae27e 348 /** \brief Get Control Register
emilmont 79:0c05e21ae27e 349
emilmont 79:0c05e21ae27e 350 This function returns the content of the Control Register.
emilmont 79:0c05e21ae27e 351
emilmont 79:0c05e21ae27e 352 \return Control Register value
emilmont 79:0c05e21ae27e 353 */
emilmont 79:0c05e21ae27e 354 __attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __get_CONTROL(void)
emilmont 79:0c05e21ae27e 355 {
emilmont 79:0c05e21ae27e 356 uint32_t result;
emilmont 79:0c05e21ae27e 357
emilmont 79:0c05e21ae27e 358 __ASM volatile ("MRS %0, control" : "=r" (result) );
emilmont 79:0c05e21ae27e 359 return(result);
emilmont 79:0c05e21ae27e 360 }
emilmont 79:0c05e21ae27e 361
emilmont 79:0c05e21ae27e 362
emilmont 79:0c05e21ae27e 363 /** \brief Set Control Register
emilmont 79:0c05e21ae27e 364
emilmont 79:0c05e21ae27e 365 This function writes the given value to the Control Register.
emilmont 79:0c05e21ae27e 366
emilmont 79:0c05e21ae27e 367 \param [in] control Control Register value to set
emilmont 79:0c05e21ae27e 368 */
emilmont 79:0c05e21ae27e 369 __attribute__( ( always_inline ) ) __STATIC_INLINE void __set_CONTROL(uint32_t control)
emilmont 79:0c05e21ae27e 370 {
emilmont 79:0c05e21ae27e 371 __ASM volatile ("MSR control, %0" : : "r" (control) : "memory");
emilmont 79:0c05e21ae27e 372 }
emilmont 79:0c05e21ae27e 373
emilmont 79:0c05e21ae27e 374
emilmont 79:0c05e21ae27e 375 /** \brief Get IPSR Register
emilmont 79:0c05e21ae27e 376
emilmont 79:0c05e21ae27e 377 This function returns the content of the IPSR Register.
emilmont 79:0c05e21ae27e 378
emilmont 79:0c05e21ae27e 379 \return IPSR Register value
emilmont 79:0c05e21ae27e 380 */
emilmont 79:0c05e21ae27e 381 __attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __get_IPSR(void)
emilmont 79:0c05e21ae27e 382 {
emilmont 79:0c05e21ae27e 383 uint32_t result;
emilmont 79:0c05e21ae27e 384
emilmont 79:0c05e21ae27e 385 __ASM volatile ("MRS %0, ipsr" : "=r" (result) );
emilmont 79:0c05e21ae27e 386 return(result);
emilmont 79:0c05e21ae27e 387 }
emilmont 79:0c05e21ae27e 388
emilmont 79:0c05e21ae27e 389
emilmont 79:0c05e21ae27e 390 /** \brief Get APSR Register
emilmont 79:0c05e21ae27e 391
emilmont 79:0c05e21ae27e 392 This function returns the content of the APSR Register.
emilmont 79:0c05e21ae27e 393
emilmont 79:0c05e21ae27e 394 \return APSR Register value
emilmont 79:0c05e21ae27e 395 */
emilmont 79:0c05e21ae27e 396 __attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __get_APSR(void)
emilmont 79:0c05e21ae27e 397 {
emilmont 79:0c05e21ae27e 398 uint32_t result;
emilmont 79:0c05e21ae27e 399
emilmont 79:0c05e21ae27e 400 __ASM volatile ("MRS %0, apsr" : "=r" (result) );
emilmont 79:0c05e21ae27e 401 return(result);
emilmont 79:0c05e21ae27e 402 }
emilmont 79:0c05e21ae27e 403
emilmont 79:0c05e21ae27e 404
emilmont 79:0c05e21ae27e 405 /** \brief Get xPSR Register
emilmont 79:0c05e21ae27e 406
emilmont 79:0c05e21ae27e 407 This function returns the content of the xPSR Register.
emilmont 79:0c05e21ae27e 408
emilmont 79:0c05e21ae27e 409 \return xPSR Register value
emilmont 79:0c05e21ae27e 410 */
emilmont 79:0c05e21ae27e 411 __attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __get_xPSR(void)
emilmont 79:0c05e21ae27e 412 {
emilmont 79:0c05e21ae27e 413 uint32_t result;
emilmont 79:0c05e21ae27e 414
emilmont 79:0c05e21ae27e 415 __ASM volatile ("MRS %0, xpsr" : "=r" (result) );
emilmont 79:0c05e21ae27e 416 return(result);
emilmont 79:0c05e21ae27e 417 }
emilmont 79:0c05e21ae27e 418
emilmont 79:0c05e21ae27e 419
emilmont 79:0c05e21ae27e 420 /** \brief Get Process Stack Pointer
emilmont 79:0c05e21ae27e 421
emilmont 79:0c05e21ae27e 422 This function returns the current value of the Process Stack Pointer (PSP).
emilmont 79:0c05e21ae27e 423
emilmont 79:0c05e21ae27e 424 \return PSP Register value
emilmont 79:0c05e21ae27e 425 */
emilmont 79:0c05e21ae27e 426 __attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __get_PSP(void)
emilmont 79:0c05e21ae27e 427 {
emilmont 79:0c05e21ae27e 428 register uint32_t result;
emilmont 79:0c05e21ae27e 429
emilmont 79:0c05e21ae27e 430 __ASM volatile ("MRS %0, psp\n" : "=r" (result) );
emilmont 79:0c05e21ae27e 431 return(result);
emilmont 79:0c05e21ae27e 432 }
emilmont 79:0c05e21ae27e 433
emilmont 79:0c05e21ae27e 434
emilmont 79:0c05e21ae27e 435 /** \brief Set Process Stack Pointer
emilmont 79:0c05e21ae27e 436
emilmont 79:0c05e21ae27e 437 This function assigns the given value to the Process Stack Pointer (PSP).
emilmont 79:0c05e21ae27e 438
emilmont 79:0c05e21ae27e 439 \param [in] topOfProcStack Process Stack Pointer value to set
emilmont 79:0c05e21ae27e 440 */
emilmont 79:0c05e21ae27e 441 __attribute__( ( always_inline ) ) __STATIC_INLINE void __set_PSP(uint32_t topOfProcStack)
emilmont 79:0c05e21ae27e 442 {
emilmont 79:0c05e21ae27e 443 __ASM volatile ("MSR psp, %0\n" : : "r" (topOfProcStack) : "sp");
emilmont 79:0c05e21ae27e 444 }
emilmont 79:0c05e21ae27e 445
emilmont 79:0c05e21ae27e 446
emilmont 79:0c05e21ae27e 447 /** \brief Get Main Stack Pointer
emilmont 79:0c05e21ae27e 448
emilmont 79:0c05e21ae27e 449 This function returns the current value of the Main Stack Pointer (MSP).
emilmont 79:0c05e21ae27e 450
emilmont 79:0c05e21ae27e 451 \return MSP Register value
emilmont 79:0c05e21ae27e 452 */
emilmont 79:0c05e21ae27e 453 __attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __get_MSP(void)
emilmont 79:0c05e21ae27e 454 {
emilmont 79:0c05e21ae27e 455 register uint32_t result;
emilmont 79:0c05e21ae27e 456
emilmont 79:0c05e21ae27e 457 __ASM volatile ("MRS %0, msp\n" : "=r" (result) );
emilmont 79:0c05e21ae27e 458 return(result);
emilmont 79:0c05e21ae27e 459 }
emilmont 79:0c05e21ae27e 460
emilmont 79:0c05e21ae27e 461
emilmont 79:0c05e21ae27e 462 /** \brief Set Main Stack Pointer
emilmont 79:0c05e21ae27e 463
emilmont 79:0c05e21ae27e 464 This function assigns the given value to the Main Stack Pointer (MSP).
emilmont 79:0c05e21ae27e 465
emilmont 79:0c05e21ae27e 466 \param [in] topOfMainStack Main Stack Pointer value to set
emilmont 79:0c05e21ae27e 467 */
emilmont 79:0c05e21ae27e 468 __attribute__( ( always_inline ) ) __STATIC_INLINE void __set_MSP(uint32_t topOfMainStack)
emilmont 79:0c05e21ae27e 469 {
emilmont 79:0c05e21ae27e 470 __ASM volatile ("MSR msp, %0\n" : : "r" (topOfMainStack) : "sp");
emilmont 79:0c05e21ae27e 471 }
emilmont 79:0c05e21ae27e 472
emilmont 79:0c05e21ae27e 473
emilmont 79:0c05e21ae27e 474 /** \brief Get Priority Mask
emilmont 79:0c05e21ae27e 475
emilmont 79:0c05e21ae27e 476 This function returns the current state of the priority mask bit from the Priority Mask Register.
emilmont 79:0c05e21ae27e 477
emilmont 79:0c05e21ae27e 478 \return Priority Mask value
emilmont 79:0c05e21ae27e 479 */
emilmont 79:0c05e21ae27e 480 __attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __get_PRIMASK(void)
emilmont 79:0c05e21ae27e 481 {
emilmont 79:0c05e21ae27e 482 uint32_t result;
emilmont 79:0c05e21ae27e 483
emilmont 79:0c05e21ae27e 484 __ASM volatile ("MRS %0, primask" : "=r" (result) );
emilmont 79:0c05e21ae27e 485 return(result);
emilmont 79:0c05e21ae27e 486 }
emilmont 79:0c05e21ae27e 487
emilmont 79:0c05e21ae27e 488
emilmont 79:0c05e21ae27e 489 /** \brief Set Priority Mask
emilmont 79:0c05e21ae27e 490
emilmont 79:0c05e21ae27e 491 This function assigns the given value to the Priority Mask Register.
emilmont 79:0c05e21ae27e 492
emilmont 79:0c05e21ae27e 493 \param [in] priMask Priority Mask
emilmont 79:0c05e21ae27e 494 */
emilmont 79:0c05e21ae27e 495 __attribute__( ( always_inline ) ) __STATIC_INLINE void __set_PRIMASK(uint32_t priMask)
emilmont 79:0c05e21ae27e 496 {
emilmont 79:0c05e21ae27e 497 __ASM volatile ("MSR primask, %0" : : "r" (priMask) : "memory");
emilmont 79:0c05e21ae27e 498 }
emilmont 79:0c05e21ae27e 499
emilmont 79:0c05e21ae27e 500
emilmont 79:0c05e21ae27e 501 #if (__CORTEX_M >= 0x03)
emilmont 79:0c05e21ae27e 502
emilmont 79:0c05e21ae27e 503 /** \brief Enable FIQ
emilmont 79:0c05e21ae27e 504
emilmont 79:0c05e21ae27e 505 This function enables FIQ interrupts by clearing the F-bit in the CPSR.
emilmont 79:0c05e21ae27e 506 Can only be executed in Privileged modes.
emilmont 79:0c05e21ae27e 507 */
emilmont 79:0c05e21ae27e 508 __attribute__( ( always_inline ) ) __STATIC_INLINE void __enable_fault_irq(void)
emilmont 79:0c05e21ae27e 509 {
emilmont 79:0c05e21ae27e 510 __ASM volatile ("cpsie f" : : : "memory");
emilmont 79:0c05e21ae27e 511 }
emilmont 79:0c05e21ae27e 512
emilmont 79:0c05e21ae27e 513
emilmont 79:0c05e21ae27e 514 /** \brief Disable FIQ
emilmont 79:0c05e21ae27e 515
emilmont 79:0c05e21ae27e 516 This function disables FIQ interrupts by setting the F-bit in the CPSR.
emilmont 79:0c05e21ae27e 517 Can only be executed in Privileged modes.
emilmont 79:0c05e21ae27e 518 */
emilmont 79:0c05e21ae27e 519 __attribute__( ( always_inline ) ) __STATIC_INLINE void __disable_fault_irq(void)
emilmont 79:0c05e21ae27e 520 {
emilmont 79:0c05e21ae27e 521 __ASM volatile ("cpsid f" : : : "memory");
emilmont 79:0c05e21ae27e 522 }
emilmont 79:0c05e21ae27e 523
emilmont 79:0c05e21ae27e 524
emilmont 79:0c05e21ae27e 525 /** \brief Get Base Priority
emilmont 79:0c05e21ae27e 526
emilmont 79:0c05e21ae27e 527 This function returns the current value of the Base Priority register.
emilmont 79:0c05e21ae27e 528
emilmont 79:0c05e21ae27e 529 \return Base Priority register value
emilmont 79:0c05e21ae27e 530 */
emilmont 79:0c05e21ae27e 531 __attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __get_BASEPRI(void)
emilmont 79:0c05e21ae27e 532 {
emilmont 79:0c05e21ae27e 533 uint32_t result;
emilmont 79:0c05e21ae27e 534
Kojto 110:165afa46840b 535 __ASM volatile ("MRS %0, basepri" : "=r" (result) );
emilmont 79:0c05e21ae27e 536 return(result);
emilmont 79:0c05e21ae27e 537 }
emilmont 79:0c05e21ae27e 538
emilmont 79:0c05e21ae27e 539
emilmont 79:0c05e21ae27e 540 /** \brief Set Base Priority
emilmont 79:0c05e21ae27e 541
emilmont 79:0c05e21ae27e 542 This function assigns the given value to the Base Priority register.
emilmont 79:0c05e21ae27e 543
emilmont 79:0c05e21ae27e 544 \param [in] basePri Base Priority value to set
emilmont 79:0c05e21ae27e 545 */
emilmont 79:0c05e21ae27e 546 __attribute__( ( always_inline ) ) __STATIC_INLINE void __set_BASEPRI(uint32_t value)
emilmont 79:0c05e21ae27e 547 {
emilmont 79:0c05e21ae27e 548 __ASM volatile ("MSR basepri, %0" : : "r" (value) : "memory");
emilmont 79:0c05e21ae27e 549 }
emilmont 79:0c05e21ae27e 550
emilmont 79:0c05e21ae27e 551
Kojto 110:165afa46840b 552 /** \brief Set Base Priority with condition
Kojto 110:165afa46840b 553
Kojto 110:165afa46840b 554 This function assigns the given value to the Base Priority register only if BASEPRI masking is disabled,
Kojto 110:165afa46840b 555 or the new value increases the BASEPRI priority level.
Kojto 110:165afa46840b 556
Kojto 110:165afa46840b 557 \param [in] basePri Base Priority value to set
Kojto 110:165afa46840b 558 */
Kojto 110:165afa46840b 559 __attribute__( ( always_inline ) ) __STATIC_INLINE void __set_BASEPRI_MAX(uint32_t value)
Kojto 110:165afa46840b 560 {
Kojto 110:165afa46840b 561 __ASM volatile ("MSR basepri_max, %0" : : "r" (value) : "memory");
Kojto 110:165afa46840b 562 }
Kojto 110:165afa46840b 563
Kojto 110:165afa46840b 564
emilmont 79:0c05e21ae27e 565 /** \brief Get Fault Mask
emilmont 79:0c05e21ae27e 566
emilmont 79:0c05e21ae27e 567 This function returns the current value of the Fault Mask register.
emilmont 79:0c05e21ae27e 568
emilmont 79:0c05e21ae27e 569 \return Fault Mask register value
emilmont 79:0c05e21ae27e 570 */
emilmont 79:0c05e21ae27e 571 __attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __get_FAULTMASK(void)
emilmont 79:0c05e21ae27e 572 {
emilmont 79:0c05e21ae27e 573 uint32_t result;
emilmont 79:0c05e21ae27e 574
emilmont 79:0c05e21ae27e 575 __ASM volatile ("MRS %0, faultmask" : "=r" (result) );
emilmont 79:0c05e21ae27e 576 return(result);
emilmont 79:0c05e21ae27e 577 }
emilmont 79:0c05e21ae27e 578
emilmont 79:0c05e21ae27e 579
emilmont 79:0c05e21ae27e 580 /** \brief Set Fault Mask
emilmont 79:0c05e21ae27e 581
emilmont 79:0c05e21ae27e 582 This function assigns the given value to the Fault Mask register.
emilmont 79:0c05e21ae27e 583
emilmont 79:0c05e21ae27e 584 \param [in] faultMask Fault Mask value to set
emilmont 79:0c05e21ae27e 585 */
emilmont 79:0c05e21ae27e 586 __attribute__( ( always_inline ) ) __STATIC_INLINE void __set_FAULTMASK(uint32_t faultMask)
emilmont 79:0c05e21ae27e 587 {
emilmont 79:0c05e21ae27e 588 __ASM volatile ("MSR faultmask, %0" : : "r" (faultMask) : "memory");
emilmont 79:0c05e21ae27e 589 }
emilmont 79:0c05e21ae27e 590
emilmont 79:0c05e21ae27e 591 #endif /* (__CORTEX_M >= 0x03) */
emilmont 79:0c05e21ae27e 592
emilmont 79:0c05e21ae27e 593
Kojto 110:165afa46840b 594 #if (__CORTEX_M == 0x04) || (__CORTEX_M == 0x07)
emilmont 79:0c05e21ae27e 595
emilmont 79:0c05e21ae27e 596 /** \brief Get FPSCR
emilmont 79:0c05e21ae27e 597
emilmont 79:0c05e21ae27e 598 This function returns the current value of the Floating Point Status/Control register.
emilmont 79:0c05e21ae27e 599
emilmont 79:0c05e21ae27e 600 \return Floating Point Status/Control register value
emilmont 79:0c05e21ae27e 601 */
emilmont 79:0c05e21ae27e 602 __attribute__( ( always_inline ) ) __STATIC_INLINE uint32_t __get_FPSCR(void)
emilmont 79:0c05e21ae27e 603 {
emilmont 79:0c05e21ae27e 604 #if (__FPU_PRESENT == 1) && (__FPU_USED == 1)
emilmont 79:0c05e21ae27e 605 uint32_t result;
emilmont 79:0c05e21ae27e 606
emilmont 79:0c05e21ae27e 607 /* Empty asm statement works as a scheduling barrier */
emilmont 79:0c05e21ae27e 608 __ASM volatile ("");
emilmont 79:0c05e21ae27e 609 __ASM volatile ("VMRS %0, fpscr" : "=r" (result) );
emilmont 79:0c05e21ae27e 610 __ASM volatile ("");
emilmont 79:0c05e21ae27e 611 return(result);
emilmont 79:0c05e21ae27e 612 #else
emilmont 79:0c05e21ae27e 613 return(0);
emilmont 79:0c05e21ae27e 614 #endif
emilmont 79:0c05e21ae27e 615 }
emilmont 79:0c05e21ae27e 616
emilmont 79:0c05e21ae27e 617
emilmont 79:0c05e21ae27e 618 /** \brief Set FPSCR
emilmont 79:0c05e21ae27e 619
emilmont 79:0c05e21ae27e 620 This function assigns the given value to the Floating Point Status/Control register.
emilmont 79:0c05e21ae27e 621
emilmont 79:0c05e21ae27e 622 \param [in] fpscr Floating Point Status/Control value to set
emilmont 79:0c05e21ae27e 623 */
emilmont 79:0c05e21ae27e 624 __attribute__( ( always_inline ) ) __STATIC_INLINE void __set_FPSCR(uint32_t fpscr)
emilmont 79:0c05e21ae27e 625 {
emilmont 79:0c05e21ae27e 626 #if (__FPU_PRESENT == 1) && (__FPU_USED == 1)
emilmont 79:0c05e21ae27e 627 /* Empty asm statement works as a scheduling barrier */
emilmont 79:0c05e21ae27e 628 __ASM volatile ("");
emilmont 79:0c05e21ae27e 629 __ASM volatile ("VMSR fpscr, %0" : : "r" (fpscr) : "vfpcc");
emilmont 79:0c05e21ae27e 630 __ASM volatile ("");
emilmont 79:0c05e21ae27e 631 #endif
emilmont 79:0c05e21ae27e 632 }
emilmont 79:0c05e21ae27e 633
Kojto 110:165afa46840b 634 #endif /* (__CORTEX_M == 0x04) || (__CORTEX_M == 0x07) */
Kojto 110:165afa46840b 635
Kojto 110:165afa46840b 636
Kojto 110:165afa46840b 637 #elif defined ( __ICCARM__ ) /*------------------ ICC Compiler -------------------*/
Kojto 110:165afa46840b 638 /* IAR iccarm specific functions */
Kojto 110:165afa46840b 639 #include <cmsis_iar.h>
Kojto 110:165afa46840b 640
Kojto 110:165afa46840b 641
Kojto 110:165afa46840b 642 #elif defined ( __TMS470__ ) /*---------------- TI CCS Compiler ------------------*/
Kojto 110:165afa46840b 643 /* TI CCS specific functions */
Kojto 110:165afa46840b 644 #include <cmsis_ccs.h>
emilmont 79:0c05e21ae27e 645
emilmont 79:0c05e21ae27e 646
emilmont 79:0c05e21ae27e 647 #elif defined ( __TASKING__ ) /*------------------ TASKING Compiler --------------*/
emilmont 79:0c05e21ae27e 648 /* TASKING carm specific functions */
emilmont 79:0c05e21ae27e 649 /*
emilmont 79:0c05e21ae27e 650 * The CMSIS functions have been implemented as intrinsics in the compiler.
Kojto 110:165afa46840b 651 * Please use "carm -?i" to get an up to date list of all intrinsics,
emilmont 79:0c05e21ae27e 652 * Including the CMSIS ones.
emilmont 79:0c05e21ae27e 653 */
emilmont 79:0c05e21ae27e 654
Kojto 110:165afa46840b 655
Kojto 110:165afa46840b 656 #elif defined ( __CSMC__ ) /*------------------ COSMIC Compiler -------------------*/
Kojto 110:165afa46840b 657 /* Cosmic specific functions */
Kojto 110:165afa46840b 658 #include <cmsis_csm.h>
Kojto 110:165afa46840b 659
emilmont 79:0c05e21ae27e 660 #endif
emilmont 79:0c05e21ae27e 661
emilmont 79:0c05e21ae27e 662 /*@} end of CMSIS_Core_RegAccFunctions */
emilmont 79:0c05e21ae27e 663
emilmont 79:0c05e21ae27e 664 #endif /* __CORE_CMFUNC_H */