mbed official / mbed

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

Committer:
<>
Date:
Tue Nov 08 17:28:34 2016 +0000
Revision:
129:0ab6a29f35bf
Parent:
128:9bcdf88f62b0
Release 129 of the mbed library

Ports for Upcoming Targets

3011: Add u-blox Sara-N target. https://github.com/ARMmbed/mbed-os/pull/3011
3099: MAX32625 https://github.com/ARMmbed/mbed-os/pull/3099
3151: Add support for FRDM-K82F https://github.com/ARMmbed/mbed-os/pull/3151
3177: New mcu k22512 fixing pr 3136 https://github.com/ARMmbed/mbed-os/pull/3177

Fixes and Changes

3008: NUCLEO_F072RB: Fix wrong timer channel number on pwm PB_5 pin https://github.com/ARMmbed/mbed-os/pull/3008
3013: STM32xx - Change how the ADC internal pins are checked before pinmap_ https://github.com/ARMmbed/mbed-os/pull/3013
3041: [nRF5] - added implementation of API of serial port flow control configuration. https://github.com/ARMmbed/mbed-os/pull/3041
3084: [nrf5] fix in Digital I/O : a gpioe pin was uninitialized badly https://github.com/ARMmbed/mbed-os/pull/3084
3009: TRNG enabled. TRNG APIs implemented. REV A/B/C/D flags removed. Warnings removed https://github.com/ARMmbed/mbed-os/pull/3009
3074: Target stm init gcc alignement https://github.com/ARMmbed/mbed-os/pull/3074
2988: Update of can_api.c fixing #2987 https://github.com/ARMmbed/mbed-os/pull/2988
3173: [Exporters] Add a device_name to microbit entry in targets.json https://github.com/ARMmbed/mbed-os/pull/3173
2969: [nRF52] - switch irq priorities of driver handlers to the lowest level https://github.com/ARMmbed/mbed-os/pull/2969
3184: #3183 Compiler warning in trng_api.c with K64F https://github.com/ARMmbed/mbed-os/pull/3184
3104: [NuMaker] Support CAN and fix PWM CLK error https://github.com/ARMmbed/mbed-os/pull/3104
3186: MultiTech mDot - add back SPI3 pins https://github.com/ARMmbed/mbed-os/pull/3186
3075: nsapi - Add standardized return types for size and errors https://github.com/ARMmbed/mbed-os/pull/3075
3221: u-blox odin w2 drivers update https://github.com/ARMmbed/mbed-os/pull/3221

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 122:f9eeca106725 1 /* MPS2 CMSIS Library
Kojto 122:f9eeca106725 2 *
Kojto 122:f9eeca106725 3 * Copyright (c) 2006-2016 ARM Limited
Kojto 122:f9eeca106725 4 * All rights reserved.
Kojto 122:f9eeca106725 5 *
Kojto 122:f9eeca106725 6 * Redistribution and use in source and binary forms, with or without
Kojto 122:f9eeca106725 7 * modification, are permitted provided that the following conditions are met:
Kojto 122:f9eeca106725 8 *
Kojto 122:f9eeca106725 9 * 1. Redistributions of source code must retain the above copyright notice,
Kojto 122:f9eeca106725 10 * this list of conditions and the following disclaimer.
Kojto 122:f9eeca106725 11 *
Kojto 122:f9eeca106725 12 * 2. Redistributions in binary form must reproduce the above copyright notice,
Kojto 122:f9eeca106725 13 * this list of conditions and the following disclaimer in the documentation
Kojto 122:f9eeca106725 14 * and/or other materials provided with the distribution.
Kojto 122:f9eeca106725 15 *
Kojto 122:f9eeca106725 16 * 3. Neither the name of the copyright holder nor the names of its contributors
Kojto 122:f9eeca106725 17 * may be used to endorse or promote products derived from this software without
Kojto 122:f9eeca106725 18 * specific prior written permission.
Kojto 122:f9eeca106725 19 *
Kojto 122:f9eeca106725 20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Kojto 122:f9eeca106725 21 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Kojto 122:f9eeca106725 22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
Kojto 122:f9eeca106725 23 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
Kojto 122:f9eeca106725 24 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
Kojto 122:f9eeca106725 25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
Kojto 122:f9eeca106725 26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
Kojto 122:f9eeca106725 27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
Kojto 122:f9eeca106725 28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
Kojto 122:f9eeca106725 29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
Kojto 122:f9eeca106725 30 * POSSIBILITY OF SUCH DAMAGE.
Kojto 122:f9eeca106725 31 *******************************************************************************
Kojto 122:f9eeca106725 32 * A generic CMSIS include header, pulling in MPS2 specifics
Kojto 122:f9eeca106725 33 *******************************************************************************/
Kojto 122:f9eeca106725 34
Kojto 122:f9eeca106725 35 #ifndef MBED_CMSIS_H
Kojto 122:f9eeca106725 36 #define MBED_CMSIS_H
Kojto 122:f9eeca106725 37
Kojto 122:f9eeca106725 38 #include "CMSDK_BEID.h"
Kojto 122:f9eeca106725 39 #include "SMM_MPS2.h"
Kojto 122:f9eeca106725 40 #include "cmsis_nvic.h"
Kojto 122:f9eeca106725 41
Kojto 122:f9eeca106725 42 #endif