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:
Mon Jan 16 12:05:23 2017 +0000
Revision:
134:ad3be0349dc5
Parent:
119:aae6fcc7d9bb
Release 134 of the mbed library

Ports for Upcoming Targets


Fixes and Changes

3488: Dev stm i2c v2 unitary functions https://github.com/ARMmbed/mbed-os/pull/3488
3492: Fix #3463 CAN read() return value https://github.com/ARMmbed/mbed-os/pull/3492
3503: [LPC15xx] Ensure that PWM=1 is resolved correctly https://github.com/ARMmbed/mbed-os/pull/3503
3504: [LPC15xx] CAN implementation improvements https://github.com/ARMmbed/mbed-os/pull/3504
3539: NUCLEO_F412ZG - Add support of TRNG peripheral https://github.com/ARMmbed/mbed-os/pull/3539
3540: STM: SPI: Initialize Rx in spi_master_write https://github.com/ARMmbed/mbed-os/pull/3540
3438: K64F: Add support for SERIAL ASYNCH API https://github.com/ARMmbed/mbed-os/pull/3438
3519: MCUXpresso: Fix ENET driver to enable interrupts after interrupt handler is set https://github.com/ARMmbed/mbed-os/pull/3519
3544: STM32L4 deepsleep improvement https://github.com/ARMmbed/mbed-os/pull/3544
3546: NUCLEO-F412ZG - Add CAN peripheral https://github.com/ARMmbed/mbed-os/pull/3546
3551: Fix I2C driver for RZ/A1H https://github.com/ARMmbed/mbed-os/pull/3551
3558: K64F UART Asynch API: Fix synchronization issue https://github.com/ARMmbed/mbed-os/pull/3558
3563: LPC4088 - Fix vector checksum https://github.com/ARMmbed/mbed-os/pull/3563
3567: Dev stm32 F0 v1.7.0 https://github.com/ARMmbed/mbed-os/pull/3567
3577: Fixes linking errors when building with debug profile https://github.com/ARMmbed/mbed-os/pull/3577

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 119:aae6fcc7d9bb 1 /**************************************************************************//**
Kojto 119:aae6fcc7d9bb 2 * @file core_ca9.h
Kojto 119:aae6fcc7d9bb 3 * @brief CMSIS Cortex-A9 Core Peripheral Access Layer Header File
Kojto 119:aae6fcc7d9bb 4 * @version
Kojto 119:aae6fcc7d9bb 5 * @date 25 March 2013
Kojto 119:aae6fcc7d9bb 6 *
Kojto 119:aae6fcc7d9bb 7 * @note
Kojto 119:aae6fcc7d9bb 8 *
Kojto 119:aae6fcc7d9bb 9 ******************************************************************************/
Kojto 119:aae6fcc7d9bb 10 /* Copyright (c) 2009 - 2012 ARM LIMITED
Kojto 119:aae6fcc7d9bb 11
Kojto 119:aae6fcc7d9bb 12 All rights reserved.
Kojto 119:aae6fcc7d9bb 13 Redistribution and use in source and binary forms, with or without
Kojto 119:aae6fcc7d9bb 14 modification, are permitted provided that the following conditions are met:
Kojto 119:aae6fcc7d9bb 15 - Redistributions of source code must retain the above copyright
Kojto 119:aae6fcc7d9bb 16 notice, this list of conditions and the following disclaimer.
Kojto 119:aae6fcc7d9bb 17 - Redistributions in binary form must reproduce the above copyright
Kojto 119:aae6fcc7d9bb 18 notice, this list of conditions and the following disclaimer in the
Kojto 119:aae6fcc7d9bb 19 documentation and/or other materials provided with the distribution.
Kojto 119:aae6fcc7d9bb 20 - Neither the name of ARM nor the names of its contributors may be used
Kojto 119:aae6fcc7d9bb 21 to endorse or promote products derived from this software without
Kojto 119:aae6fcc7d9bb 22 specific prior written permission.
Kojto 119:aae6fcc7d9bb 23 *
Kojto 119:aae6fcc7d9bb 24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Kojto 119:aae6fcc7d9bb 25 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Kojto 119:aae6fcc7d9bb 26 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
Kojto 119:aae6fcc7d9bb 27 ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE
Kojto 119:aae6fcc7d9bb 28 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
Kojto 119:aae6fcc7d9bb 29 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
Kojto 119:aae6fcc7d9bb 30 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
Kojto 119:aae6fcc7d9bb 31 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
Kojto 119:aae6fcc7d9bb 32 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
Kojto 119:aae6fcc7d9bb 33 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
Kojto 119:aae6fcc7d9bb 34 POSSIBILITY OF SUCH DAMAGE.
Kojto 119:aae6fcc7d9bb 35 ---------------------------------------------------------------------------*/
Kojto 119:aae6fcc7d9bb 36
Kojto 119:aae6fcc7d9bb 37
Kojto 119:aae6fcc7d9bb 38 #if defined ( __ICCARM__ )
Kojto 119:aae6fcc7d9bb 39 #pragma system_include /* treat file as system include file for MISRA check */
Kojto 119:aae6fcc7d9bb 40 #endif
Kojto 119:aae6fcc7d9bb 41
Kojto 119:aae6fcc7d9bb 42 #ifdef __cplusplus
Kojto 119:aae6fcc7d9bb 43 extern "C" {
Kojto 119:aae6fcc7d9bb 44 #endif
Kojto 119:aae6fcc7d9bb 45
Kojto 119:aae6fcc7d9bb 46 #ifndef __CORE_CA9_H_GENERIC
Kojto 119:aae6fcc7d9bb 47 #define __CORE_CA9_H_GENERIC
Kojto 119:aae6fcc7d9bb 48
Kojto 119:aae6fcc7d9bb 49
Kojto 119:aae6fcc7d9bb 50 /** \page CMSIS_MISRA_Exceptions MISRA-C:2004 Compliance Exceptions
Kojto 119:aae6fcc7d9bb 51 CMSIS violates the following MISRA-C:2004 rules:
Kojto 119:aae6fcc7d9bb 52
Kojto 119:aae6fcc7d9bb 53 \li Required Rule 8.5, object/function definition in header file.<br>
Kojto 119:aae6fcc7d9bb 54 Function definitions in header files are used to allow 'inlining'.
Kojto 119:aae6fcc7d9bb 55
Kojto 119:aae6fcc7d9bb 56 \li Required Rule 18.4, declaration of union type or object of union type: '{...}'.<br>
Kojto 119:aae6fcc7d9bb 57 Unions are used for effective representation of core registers.
Kojto 119:aae6fcc7d9bb 58
Kojto 119:aae6fcc7d9bb 59 \li Advisory Rule 19.7, Function-like macro defined.<br>
Kojto 119:aae6fcc7d9bb 60 Function-like macros are used to allow more efficient code.
Kojto 119:aae6fcc7d9bb 61 */
Kojto 119:aae6fcc7d9bb 62
Kojto 119:aae6fcc7d9bb 63
Kojto 119:aae6fcc7d9bb 64 /*******************************************************************************
Kojto 119:aae6fcc7d9bb 65 * CMSIS definitions
Kojto 119:aae6fcc7d9bb 66 ******************************************************************************/
Kojto 119:aae6fcc7d9bb 67 /** \ingroup Cortex_A9
Kojto 119:aae6fcc7d9bb 68 @{
Kojto 119:aae6fcc7d9bb 69 */
Kojto 119:aae6fcc7d9bb 70
Kojto 119:aae6fcc7d9bb 71 /* CMSIS CA9 definitions */
Kojto 119:aae6fcc7d9bb 72 #define __CA9_CMSIS_VERSION_MAIN (0x03) /*!< [31:16] CMSIS HAL main version */
Kojto 119:aae6fcc7d9bb 73 #define __CA9_CMSIS_VERSION_SUB (0x10) /*!< [15:0] CMSIS HAL sub version */
Kojto 119:aae6fcc7d9bb 74 #define __CA9_CMSIS_VERSION ((__CA9_CMSIS_VERSION_MAIN << 16) | \
Kojto 119:aae6fcc7d9bb 75 __CA9_CMSIS_VERSION_SUB ) /*!< CMSIS HAL version number */
Kojto 119:aae6fcc7d9bb 76
Kojto 119:aae6fcc7d9bb 77 #define __CORTEX_A (0x09) /*!< Cortex-A Core */
Kojto 119:aae6fcc7d9bb 78
Kojto 119:aae6fcc7d9bb 79
Kojto 119:aae6fcc7d9bb 80 #if defined ( __CC_ARM )
Kojto 119:aae6fcc7d9bb 81 #define __ASM __asm /*!< asm keyword for ARM Compiler */
Kojto 119:aae6fcc7d9bb 82 #define __INLINE __inline /*!< inline keyword for ARM Compiler */
Kojto 119:aae6fcc7d9bb 83 #define __STATIC_INLINE static __inline
Kojto 119:aae6fcc7d9bb 84 #define __STATIC_ASM static __asm
Kojto 119:aae6fcc7d9bb 85
Kojto 119:aae6fcc7d9bb 86 #elif defined ( __ICCARM__ )
Kojto 119:aae6fcc7d9bb 87 #define __ASM __asm /*!< asm keyword for IAR Compiler */
Kojto 119:aae6fcc7d9bb 88 #define __INLINE inline /*!< inline keyword for IAR Compiler. Only available in High optimization mode! */
Kojto 119:aae6fcc7d9bb 89 #define __STATIC_INLINE static inline
Kojto 119:aae6fcc7d9bb 90 #define __STATIC_ASM static __asm
Kojto 119:aae6fcc7d9bb 91
Kojto 119:aae6fcc7d9bb 92 #include <stdint.h>
Kojto 119:aae6fcc7d9bb 93 inline uint32_t __get_PSR(void) {
Kojto 119:aae6fcc7d9bb 94 __ASM("mrs r0, cpsr");
Kojto 119:aae6fcc7d9bb 95 }
Kojto 119:aae6fcc7d9bb 96
Kojto 119:aae6fcc7d9bb 97 #elif defined ( __TMS470__ )
Kojto 119:aae6fcc7d9bb 98 #define __ASM __asm /*!< asm keyword for TI CCS Compiler */
Kojto 119:aae6fcc7d9bb 99 #define __STATIC_INLINE static inline
Kojto 119:aae6fcc7d9bb 100 #define __STATIC_ASM static __asm
Kojto 119:aae6fcc7d9bb 101
Kojto 119:aae6fcc7d9bb 102 #elif defined ( __GNUC__ )
Kojto 119:aae6fcc7d9bb 103 #define __ASM __asm /*!< asm keyword for GNU Compiler */
Kojto 119:aae6fcc7d9bb 104 #define __INLINE inline /*!< inline keyword for GNU Compiler */
Kojto 119:aae6fcc7d9bb 105 #define __STATIC_INLINE static inline
Kojto 119:aae6fcc7d9bb 106 #define __STATIC_ASM static __asm
Kojto 119:aae6fcc7d9bb 107
Kojto 119:aae6fcc7d9bb 108 #elif defined ( __TASKING__ )
Kojto 119:aae6fcc7d9bb 109 #define __ASM __asm /*!< asm keyword for TASKING Compiler */
Kojto 119:aae6fcc7d9bb 110 #define __INLINE inline /*!< inline keyword for TASKING Compiler */
Kojto 119:aae6fcc7d9bb 111 #define __STATIC_INLINE static inline
Kojto 119:aae6fcc7d9bb 112 #define __STATIC_ASM static __asm
Kojto 119:aae6fcc7d9bb 113
Kojto 119:aae6fcc7d9bb 114 #endif
Kojto 119:aae6fcc7d9bb 115
Kojto 119:aae6fcc7d9bb 116 /** __FPU_USED indicates whether an FPU is used or not. For this, __FPU_PRESENT has to be checked prior to making use of FPU specific registers and functions.
Kojto 119:aae6fcc7d9bb 117 */
Kojto 119:aae6fcc7d9bb 118 #if defined ( __CC_ARM )
Kojto 119:aae6fcc7d9bb 119 #if defined __TARGET_FPU_VFP
Kojto 119:aae6fcc7d9bb 120 #if (__FPU_PRESENT == 1)
Kojto 119:aae6fcc7d9bb 121 #define __FPU_USED 1
Kojto 119:aae6fcc7d9bb 122 #else
Kojto 119:aae6fcc7d9bb 123 #warning "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)"
Kojto 119:aae6fcc7d9bb 124 #define __FPU_USED 0
Kojto 119:aae6fcc7d9bb 125 #endif
Kojto 119:aae6fcc7d9bb 126 #else
Kojto 119:aae6fcc7d9bb 127 #define __FPU_USED 0
Kojto 119:aae6fcc7d9bb 128 #endif
Kojto 119:aae6fcc7d9bb 129
Kojto 119:aae6fcc7d9bb 130 #elif defined ( __ICCARM__ )
Kojto 119:aae6fcc7d9bb 131 #if defined __ARMVFP__
Kojto 119:aae6fcc7d9bb 132 #if (__FPU_PRESENT == 1)
Kojto 119:aae6fcc7d9bb 133 #define __FPU_USED 1
Kojto 119:aae6fcc7d9bb 134 #else
Kojto 119:aae6fcc7d9bb 135 #warning "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)"
Kojto 119:aae6fcc7d9bb 136 #define __FPU_USED 0
Kojto 119:aae6fcc7d9bb 137 #endif
Kojto 119:aae6fcc7d9bb 138 #else
Kojto 119:aae6fcc7d9bb 139 #define __FPU_USED 0
Kojto 119:aae6fcc7d9bb 140 #endif
Kojto 119:aae6fcc7d9bb 141
Kojto 119:aae6fcc7d9bb 142 #elif defined ( __TMS470__ )
Kojto 119:aae6fcc7d9bb 143 #if defined __TI_VFP_SUPPORT__
Kojto 119:aae6fcc7d9bb 144 #if (__FPU_PRESENT == 1)
Kojto 119:aae6fcc7d9bb 145 #define __FPU_USED 1
Kojto 119:aae6fcc7d9bb 146 #else
Kojto 119:aae6fcc7d9bb 147 #warning "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)"
Kojto 119:aae6fcc7d9bb 148 #define __FPU_USED 0
Kojto 119:aae6fcc7d9bb 149 #endif
Kojto 119:aae6fcc7d9bb 150 #else
Kojto 119:aae6fcc7d9bb 151 #define __FPU_USED 0
Kojto 119:aae6fcc7d9bb 152 #endif
Kojto 119:aae6fcc7d9bb 153
Kojto 119:aae6fcc7d9bb 154 #elif defined ( __GNUC__ )
Kojto 119:aae6fcc7d9bb 155 #if defined (__VFP_FP__) && !defined(__SOFTFP__)
Kojto 119:aae6fcc7d9bb 156 #if (__FPU_PRESENT == 1)
Kojto 119:aae6fcc7d9bb 157 #define __FPU_USED 1
Kojto 119:aae6fcc7d9bb 158 #else
Kojto 119:aae6fcc7d9bb 159 #warning "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)"
Kojto 119:aae6fcc7d9bb 160 #define __FPU_USED 0
Kojto 119:aae6fcc7d9bb 161 #endif
Kojto 119:aae6fcc7d9bb 162 #else
Kojto 119:aae6fcc7d9bb 163 #define __FPU_USED 0
Kojto 119:aae6fcc7d9bb 164 #endif
Kojto 119:aae6fcc7d9bb 165
Kojto 119:aae6fcc7d9bb 166 #elif defined ( __TASKING__ )
Kojto 119:aae6fcc7d9bb 167 #if defined __FPU_VFP__
Kojto 119:aae6fcc7d9bb 168 #if (__FPU_PRESENT == 1)
Kojto 119:aae6fcc7d9bb 169 #define __FPU_USED 1
Kojto 119:aae6fcc7d9bb 170 #else
Kojto 119:aae6fcc7d9bb 171 #error "Compiler generates FPU instructions for a device without an FPU (check __FPU_PRESENT)"
Kojto 119:aae6fcc7d9bb 172 #define __FPU_USED 0
Kojto 119:aae6fcc7d9bb 173 #endif
Kojto 119:aae6fcc7d9bb 174 #else
Kojto 119:aae6fcc7d9bb 175 #define __FPU_USED 0
Kojto 119:aae6fcc7d9bb 176 #endif
Kojto 119:aae6fcc7d9bb 177 #endif
Kojto 119:aae6fcc7d9bb 178
Kojto 119:aae6fcc7d9bb 179 #include <stdint.h> /*!< standard types definitions */
Kojto 119:aae6fcc7d9bb 180 #include "core_caInstr.h" /*!< Core Instruction Access */
Kojto 119:aae6fcc7d9bb 181 #include "core_caFunc.h" /*!< Core Function Access */
Kojto 119:aae6fcc7d9bb 182 #include "core_cm4_simd.h" /*!< Compiler specific SIMD Intrinsics */
Kojto 119:aae6fcc7d9bb 183
Kojto 119:aae6fcc7d9bb 184 #endif /* __CORE_CA9_H_GENERIC */
Kojto 119:aae6fcc7d9bb 185
Kojto 119:aae6fcc7d9bb 186 #ifndef __CMSIS_GENERIC
Kojto 119:aae6fcc7d9bb 187
Kojto 119:aae6fcc7d9bb 188 #ifndef __CORE_CA9_H_DEPENDANT
Kojto 119:aae6fcc7d9bb 189 #define __CORE_CA9_H_DEPENDANT
Kojto 119:aae6fcc7d9bb 190
Kojto 119:aae6fcc7d9bb 191 /* check device defines and use defaults */
Kojto 119:aae6fcc7d9bb 192 #if defined __CHECK_DEVICE_DEFINES
Kojto 119:aae6fcc7d9bb 193 #ifndef __CA9_REV
Kojto 119:aae6fcc7d9bb 194 #define __CA9_REV 0x0000
Kojto 119:aae6fcc7d9bb 195 #warning "__CA9_REV not defined in device header file; using default!"
Kojto 119:aae6fcc7d9bb 196 #endif
Kojto 119:aae6fcc7d9bb 197
Kojto 119:aae6fcc7d9bb 198 #ifndef __FPU_PRESENT
Kojto 119:aae6fcc7d9bb 199 #define __FPU_PRESENT 1
Kojto 119:aae6fcc7d9bb 200 #warning "__FPU_PRESENT not defined in device header file; using default!"
Kojto 119:aae6fcc7d9bb 201 #endif
Kojto 119:aae6fcc7d9bb 202
Kojto 119:aae6fcc7d9bb 203 #ifndef __Vendor_SysTickConfig
Kojto 119:aae6fcc7d9bb 204 #define __Vendor_SysTickConfig 1
Kojto 119:aae6fcc7d9bb 205 #endif
Kojto 119:aae6fcc7d9bb 206
Kojto 119:aae6fcc7d9bb 207 #if __Vendor_SysTickConfig == 0
Kojto 119:aae6fcc7d9bb 208 #error "__Vendor_SysTickConfig set to 0, but vendor systick timer must be supplied for Cortex-A9"
Kojto 119:aae6fcc7d9bb 209 #endif
Kojto 119:aae6fcc7d9bb 210 #endif
Kojto 119:aae6fcc7d9bb 211
Kojto 119:aae6fcc7d9bb 212 /* IO definitions (access restrictions to peripheral registers) */
Kojto 119:aae6fcc7d9bb 213 /**
Kojto 119:aae6fcc7d9bb 214 \defgroup CMSIS_glob_defs CMSIS Global Defines
Kojto 119:aae6fcc7d9bb 215
Kojto 119:aae6fcc7d9bb 216 <strong>IO Type Qualifiers</strong> are used
Kojto 119:aae6fcc7d9bb 217 \li to specify the access to peripheral variables.
Kojto 119:aae6fcc7d9bb 218 \li for automatic generation of peripheral register debug information.
Kojto 119:aae6fcc7d9bb 219 */
Kojto 119:aae6fcc7d9bb 220 #ifdef __cplusplus
Kojto 119:aae6fcc7d9bb 221 #define __I volatile /*!< Defines 'read only' permissions */
Kojto 119:aae6fcc7d9bb 222 #else
Kojto 119:aae6fcc7d9bb 223 #define __I volatile const /*!< Defines 'read only' permissions */
Kojto 119:aae6fcc7d9bb 224 #endif
Kojto 119:aae6fcc7d9bb 225 #define __O volatile /*!< Defines 'write only' permissions */
Kojto 119:aae6fcc7d9bb 226 #define __IO volatile /*!< Defines 'read / write' permissions */
Kojto 119:aae6fcc7d9bb 227
Kojto 119:aae6fcc7d9bb 228 /*@} end of group Cortex_A9 */
Kojto 119:aae6fcc7d9bb 229
Kojto 119:aae6fcc7d9bb 230
Kojto 119:aae6fcc7d9bb 231 /*******************************************************************************
Kojto 119:aae6fcc7d9bb 232 * Register Abstraction
Kojto 119:aae6fcc7d9bb 233 ******************************************************************************/
Kojto 119:aae6fcc7d9bb 234 /** \defgroup CMSIS_core_register Defines and Type Definitions
Kojto 119:aae6fcc7d9bb 235 \brief Type definitions and defines for Cortex-A processor based devices.
Kojto 119:aae6fcc7d9bb 236 */
Kojto 119:aae6fcc7d9bb 237
Kojto 119:aae6fcc7d9bb 238 /** \ingroup CMSIS_core_register
Kojto 119:aae6fcc7d9bb 239 \defgroup CMSIS_CORE Status and Control Registers
Kojto 119:aae6fcc7d9bb 240 \brief Core Register type definitions.
Kojto 119:aae6fcc7d9bb 241 @{
Kojto 119:aae6fcc7d9bb 242 */
Kojto 119:aae6fcc7d9bb 243
Kojto 119:aae6fcc7d9bb 244 /** \brief Union type to access the Application Program Status Register (APSR).
Kojto 119:aae6fcc7d9bb 245 */
Kojto 119:aae6fcc7d9bb 246 typedef union
Kojto 119:aae6fcc7d9bb 247 {
Kojto 119:aae6fcc7d9bb 248 struct
Kojto 119:aae6fcc7d9bb 249 {
Kojto 119:aae6fcc7d9bb 250 uint32_t _reserved0:16; /*!< bit: 0..15 Reserved */
Kojto 119:aae6fcc7d9bb 251 uint32_t GE:4; /*!< bit: 16..19 Greater than or Equal flags */
Kojto 119:aae6fcc7d9bb 252 uint32_t reserved1:7; /*!< bit: 20..23 Reserved */
Kojto 119:aae6fcc7d9bb 253 uint32_t Q:1; /*!< bit: 27 Saturation condition flag */
Kojto 119:aae6fcc7d9bb 254 uint32_t V:1; /*!< bit: 28 Overflow condition code flag */
Kojto 119:aae6fcc7d9bb 255 uint32_t C:1; /*!< bit: 29 Carry condition code flag */
Kojto 119:aae6fcc7d9bb 256 uint32_t Z:1; /*!< bit: 30 Zero condition code flag */
Kojto 119:aae6fcc7d9bb 257 uint32_t N:1; /*!< bit: 31 Negative condition code flag */
Kojto 119:aae6fcc7d9bb 258 } b; /*!< Structure used for bit access */
Kojto 119:aae6fcc7d9bb 259 uint32_t w; /*!< Type used for word access */
Kojto 119:aae6fcc7d9bb 260 } APSR_Type;
Kojto 119:aae6fcc7d9bb 261
Kojto 119:aae6fcc7d9bb 262
Kojto 119:aae6fcc7d9bb 263 /*@} end of group CMSIS_CORE */
Kojto 119:aae6fcc7d9bb 264
Kojto 119:aae6fcc7d9bb 265 /*@} end of CMSIS_Core_FPUFunctions */
Kojto 119:aae6fcc7d9bb 266
Kojto 119:aae6fcc7d9bb 267
Kojto 119:aae6fcc7d9bb 268 #endif /* __CORE_CA9_H_GENERIC */
Kojto 119:aae6fcc7d9bb 269
Kojto 119:aae6fcc7d9bb 270 #endif /* __CMSIS_GENERIC */
Kojto 119:aae6fcc7d9bb 271
Kojto 119:aae6fcc7d9bb 272 #ifdef __cplusplus
Kojto 119:aae6fcc7d9bb 273 }
Kojto 119:aae6fcc7d9bb 274
Kojto 119:aae6fcc7d9bb 275
Kojto 119:aae6fcc7d9bb 276 #endif