Fork of the official mbed C/C SDK provides the software platform and libraries to build your applications for RenBED.
Dependents: 1-RenBuggyTimed RenBED_RGB RenBED_RGB_PWM RenBED_RGB
Fork of mbed by
TARGET_ARCH_MAX/cmsis.h@89:552587b429a1, 2014-09-12 (annotated)
- Committer:
- bogdanm
- Date:
- Fri Sep 12 16:41:52 2014 +0100
- Revision:
- 89:552587b429a1
Release 89 of the mbed library
Main changes:
- low power optimizations for Nordic targets
- code structure changes for Freescale K64F targets
- bug fixes in various backends
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
bogdanm | 89:552587b429a1 | 1 | /* mbed Microcontroller Library |
bogdanm | 89:552587b429a1 | 2 | * A generic CMSIS include header |
bogdanm | 89:552587b429a1 | 3 | ******************************************************************************* |
bogdanm | 89:552587b429a1 | 4 | * Copyright (c) 2014, STMicroelectronics |
bogdanm | 89:552587b429a1 | 5 | * All rights reserved. |
bogdanm | 89:552587b429a1 | 6 | * |
bogdanm | 89:552587b429a1 | 7 | * Redistribution and use in source and binary forms, with or without |
bogdanm | 89:552587b429a1 | 8 | * modification, are permitted provided that the following conditions are met: |
bogdanm | 89:552587b429a1 | 9 | * |
bogdanm | 89:552587b429a1 | 10 | * 1. Redistributions of source code must retain the above copyright notice, |
bogdanm | 89:552587b429a1 | 11 | * this list of conditions and the following disclaimer. |
bogdanm | 89:552587b429a1 | 12 | * 2. Redistributions in binary form must reproduce the above copyright notice, |
bogdanm | 89:552587b429a1 | 13 | * this list of conditions and the following disclaimer in the documentation |
bogdanm | 89:552587b429a1 | 14 | * and/or other materials provided with the distribution. |
bogdanm | 89:552587b429a1 | 15 | * 3. Neither the name of STMicroelectronics nor the names of its contributors |
bogdanm | 89:552587b429a1 | 16 | * may be used to endorse or promote products derived from this software |
bogdanm | 89:552587b429a1 | 17 | * without specific prior written permission. |
bogdanm | 89:552587b429a1 | 18 | * |
bogdanm | 89:552587b429a1 | 19 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
bogdanm | 89:552587b429a1 | 20 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
bogdanm | 89:552587b429a1 | 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
bogdanm | 89:552587b429a1 | 22 | * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
bogdanm | 89:552587b429a1 | 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
bogdanm | 89:552587b429a1 | 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
bogdanm | 89:552587b429a1 | 25 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
bogdanm | 89:552587b429a1 | 26 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
bogdanm | 89:552587b429a1 | 27 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
bogdanm | 89:552587b429a1 | 28 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
bogdanm | 89:552587b429a1 | 29 | ******************************************************************************* |
bogdanm | 89:552587b429a1 | 30 | */ |
bogdanm | 89:552587b429a1 | 31 | |
bogdanm | 89:552587b429a1 | 32 | #ifndef MBED_CMSIS_H |
bogdanm | 89:552587b429a1 | 33 | #define MBED_CMSIS_H |
bogdanm | 89:552587b429a1 | 34 | |
bogdanm | 89:552587b429a1 | 35 | #include "stm32f4xx.h" |
bogdanm | 89:552587b429a1 | 36 | #include "cmsis_nvic.h" |
bogdanm | 89:552587b429a1 | 37 | |
bogdanm | 89:552587b429a1 | 38 | #endif |