mbed official / mbed

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

Committer:
Kojto
Date:
Tue Feb 16 14:28:01 2016 +0000
Revision:
114:252557024ec3
Parent:
107:4f6c30876dfa
Child:
116:c0f6e94411f5
Release 114 of the mbed library

Changes:
- Atmel SAM - warnings fixes
- B96B F446VE - hw control flow addition
- Remove of GCC CW which was not active
- Remove GCC CS, not released anymore - deprecated

Who changed what in which revision?

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