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:
Wed Jan 04 14:13:01 2017 +0000
Revision:
133:99b5ccf27215
Release 133 of the mbed library

Ports for Upcoming Targets

3459: Target: Add new target UBLOX_EVK_NINA_B1 https://github.com/ARMmbed/mbed-os/pull/3459

Fixes and Changes

3430: Fix ci shield eeprom test https://github.com/ARMmbed/mbed-os/pull/3430
3381: STM32F1 : map ST HAL assert into MBED assert https://github.com/ARMmbed/mbed-os/pull/3381
3389: STM32F2 : map ST HAL assert into MBED assert https://github.com/ARMmbed/mbed-os/pull/3389
3390: STM32F3 : map ST HAL assert into MBED assert https://github.com/ARMmbed/mbed-os/pull/3390
3410: STM32L4 : map ST HAL assert into MBED assert https://github.com/ARMmbed/mbed-os/pull/3410
3422: Enable CAN on DISCO_F303VC https://github.com/ARMmbed/mbed-os/pull/3422
3442: Dev stm i2c f1 https://github.com/ARMmbed/mbed-os/pull/3442
3460: KSDK I2C: Update the return value to match the API documentation change https://github.com/ARMmbed/mbed-os/pull/3460
3472: [RZ/A1H]Fix TTB setting of RO_DATA area https://github.com/ARMmbed/mbed-os/pull/3472
3451: Rename KSDK2 to MCUXpresso. This is the new name of this package https://github.com/ARMmbed/mbed-os/pull/3451
3391: STM32F4 : map ST HAL assert into MBED assert https://github.com/ARMmbed/mbed-os/pull/3391
3454: STM32: Refactor lp_ticker.c + rtc_api.c + sleep.c + rtc_api_hal.h files https://github.com/ARMmbed/mbed-os/pull/3454
3489: NUCLEO_F103RB - Correct CAN and PWM alternate-functions https://github.com/ARMmbed/mbed-os/pull/3489
3405: Repair the transmit mailbox (0,1,2) empty interrupt flag not clear BUG https://github.com/ARMmbed/mbed-os/pull/3405
3502: MCUXpresso I2C: Handle 0 byte write https://github.com/ARMmbed/mbed-os/pull/3502
3365: [NUC472/M453] Support USB device https://github.com/ARMmbed/mbed-os/pull/3365

Who changed what in which revision?

UserRevisionLine numberNew contents of line
<> 133:99b5ccf27215 1 /**************************************************************************//**
<> 133:99b5ccf27215 2 * @file core_caInstr.h
<> 133:99b5ccf27215 3 * @brief CMSIS Cortex-A9 Core Peripheral Access Layer Header File
<> 133:99b5ccf27215 4 * @version
<> 133:99b5ccf27215 5 * @date 04. December 2012
<> 133:99b5ccf27215 6 *
<> 133:99b5ccf27215 7 * @note
<> 133:99b5ccf27215 8 *
<> 133:99b5ccf27215 9 ******************************************************************************/
<> 133:99b5ccf27215 10 /* Copyright (c) 2009 - 2012 ARM LIMITED
<> 133:99b5ccf27215 11
<> 133:99b5ccf27215 12 All rights reserved.
<> 133:99b5ccf27215 13 Redistribution and use in source and binary forms, with or without
<> 133:99b5ccf27215 14 modification, are permitted provided that the following conditions are met:
<> 133:99b5ccf27215 15 - Redistributions of source code must retain the above copyright
<> 133:99b5ccf27215 16 notice, this list of conditions and the following disclaimer.
<> 133:99b5ccf27215 17 - Redistributions in binary form must reproduce the above copyright
<> 133:99b5ccf27215 18 notice, this list of conditions and the following disclaimer in the
<> 133:99b5ccf27215 19 documentation and/or other materials provided with the distribution.
<> 133:99b5ccf27215 20 - Neither the name of ARM nor the names of its contributors may be used
<> 133:99b5ccf27215 21 to endorse or promote products derived from this software without
<> 133:99b5ccf27215 22 specific prior written permission.
<> 133:99b5ccf27215 23 *
<> 133:99b5ccf27215 24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
<> 133:99b5ccf27215 25 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
<> 133:99b5ccf27215 26 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
<> 133:99b5ccf27215 27 ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE
<> 133:99b5ccf27215 28 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
<> 133:99b5ccf27215 29 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
<> 133:99b5ccf27215 30 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
<> 133:99b5ccf27215 31 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
<> 133:99b5ccf27215 32 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
<> 133:99b5ccf27215 33 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
<> 133:99b5ccf27215 34 POSSIBILITY OF SUCH DAMAGE.
<> 133:99b5ccf27215 35 ---------------------------------------------------------------------------*/
<> 133:99b5ccf27215 36
<> 133:99b5ccf27215 37 #ifndef __CORE_CAINSTR_H__
<> 133:99b5ccf27215 38 #define __CORE_CAINSTR_H__
<> 133:99b5ccf27215 39
<> 133:99b5ccf27215 40 #define __CORTEX_M 0x3
<> 133:99b5ccf27215 41 #include "core_cmInstr.h"
<> 133:99b5ccf27215 42 #undef __CORTEX_M
<> 133:99b5ccf27215 43
<> 133:99b5ccf27215 44 #endif
<> 133:99b5ccf27215 45