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 mbed official

Committer:
Kojto
Date:
Tue Jun 09 14:29:26 2015 +0100
Revision:
101:7cff1c4259d7
Release 101 of the mbed library

Changes:
- new platform: APPNEARME_MICRONFCBOARD, MTS_DRAGONFLY_F411RE, MAX32600MBED, WIZwiki_W7500
- Silabs memory optimization in gpio, pwm fixes
- SPI - ssel documentation fixes and its use

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 101:7cff1c4259d7 1 /* Copyright (c) 2013, Nordic Semiconductor ASA
Kojto 101:7cff1c4259d7 2 * All rights reserved.
Kojto 101:7cff1c4259d7 3 *
Kojto 101:7cff1c4259d7 4 * Redistribution and use in source and binary forms, with or without
Kojto 101:7cff1c4259d7 5 * modification, are permitted provided that the following conditions are met:
Kojto 101:7cff1c4259d7 6 *
Kojto 101:7cff1c4259d7 7 * * Redistributions of source code must retain the above copyright notice, this
Kojto 101:7cff1c4259d7 8 * list of conditions and the following disclaimer.
Kojto 101:7cff1c4259d7 9 *
Kojto 101:7cff1c4259d7 10 * * Redistributions in binary form must reproduce the above copyright notice,
Kojto 101:7cff1c4259d7 11 * this list of conditions and the following disclaimer in the documentation
Kojto 101:7cff1c4259d7 12 * and/or other materials provided with the distribution.
Kojto 101:7cff1c4259d7 13 *
Kojto 101:7cff1c4259d7 14 * * Neither the name of Nordic Semiconductor ASA nor the names of its
Kojto 101:7cff1c4259d7 15 * contributors may be used to endorse or promote products derived from
Kojto 101:7cff1c4259d7 16 * this software without specific prior written permission.
Kojto 101:7cff1c4259d7 17 *
Kojto 101:7cff1c4259d7 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Kojto 101:7cff1c4259d7 19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Kojto 101:7cff1c4259d7 20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Kojto 101:7cff1c4259d7 21 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Kojto 101:7cff1c4259d7 22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Kojto 101:7cff1c4259d7 23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Kojto 101:7cff1c4259d7 24 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Kojto 101:7cff1c4259d7 25 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Kojto 101:7cff1c4259d7 26 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Kojto 101:7cff1c4259d7 27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Kojto 101:7cff1c4259d7 28 *
Kojto 101:7cff1c4259d7 29 */
Kojto 101:7cff1c4259d7 30 #ifndef _COMPILER_ABSTRACTION_H
Kojto 101:7cff1c4259d7 31 #define _COMPILER_ABSTRACTION_H
Kojto 101:7cff1c4259d7 32
Kojto 101:7cff1c4259d7 33 /*lint ++flb "Enter library region" */
Kojto 101:7cff1c4259d7 34
Kojto 101:7cff1c4259d7 35 #if defined ( __CC_ARM )
Kojto 101:7cff1c4259d7 36
Kojto 101:7cff1c4259d7 37 #ifndef __ASM
Kojto 101:7cff1c4259d7 38 #define __ASM __asm /*!< asm keyword for ARM Compiler */
Kojto 101:7cff1c4259d7 39 #endif
Kojto 101:7cff1c4259d7 40
Kojto 101:7cff1c4259d7 41 #ifndef __INLINE
Kojto 101:7cff1c4259d7 42 #define __INLINE __inline /*!< inline keyword for ARM Compiler */
Kojto 101:7cff1c4259d7 43 #endif
Kojto 101:7cff1c4259d7 44
Kojto 101:7cff1c4259d7 45 #ifndef __WEAK
Kojto 101:7cff1c4259d7 46 #define __WEAK __weak /*!< weak keyword for ARM Compiler */
Kojto 101:7cff1c4259d7 47 #endif
Kojto 101:7cff1c4259d7 48
Kojto 101:7cff1c4259d7 49 #define GET_SP() __current_sp() /*!> read current SP function for ARM Compiler */
Kojto 101:7cff1c4259d7 50
Kojto 101:7cff1c4259d7 51 #elif defined ( __ICCARM__ )
Kojto 101:7cff1c4259d7 52
Kojto 101:7cff1c4259d7 53 #ifndef __ASM
Kojto 101:7cff1c4259d7 54 #define __ASM __asm /*!< asm keyword for IAR Compiler */
Kojto 101:7cff1c4259d7 55 #endif
Kojto 101:7cff1c4259d7 56
Kojto 101:7cff1c4259d7 57 #ifndef __INLINE
Kojto 101:7cff1c4259d7 58 #define __INLINE inline /*!< inline keyword for IAR Compiler. Only available in High optimization mode! */
Kojto 101:7cff1c4259d7 59 #endif
Kojto 101:7cff1c4259d7 60
Kojto 101:7cff1c4259d7 61 #ifndef __WEAK
Kojto 101:7cff1c4259d7 62 #define __WEAK __weak /*!> define weak function for IAR Compiler */
Kojto 101:7cff1c4259d7 63 #endif
Kojto 101:7cff1c4259d7 64
Kojto 101:7cff1c4259d7 65 #define GET_SP() __get_SP() /*!> read current SP function for IAR Compiler */
Kojto 101:7cff1c4259d7 66
Kojto 101:7cff1c4259d7 67 #elif defined ( __GNUC__ )
Kojto 101:7cff1c4259d7 68
Kojto 101:7cff1c4259d7 69 #ifndef __ASM
Kojto 101:7cff1c4259d7 70 #define __ASM __asm /*!< asm keyword for GNU Compiler */
Kojto 101:7cff1c4259d7 71 #endif
Kojto 101:7cff1c4259d7 72
Kojto 101:7cff1c4259d7 73 #ifndef __INLINE
Kojto 101:7cff1c4259d7 74 #define __INLINE inline /*!< inline keyword for GNU Compiler */
Kojto 101:7cff1c4259d7 75 #endif
Kojto 101:7cff1c4259d7 76
Kojto 101:7cff1c4259d7 77 #ifndef __WEAK
Kojto 101:7cff1c4259d7 78 #define __WEAK __attribute__((weak)) /*!< weak keyword for GNU Compiler */
Kojto 101:7cff1c4259d7 79 #endif
Kojto 101:7cff1c4259d7 80
Kojto 101:7cff1c4259d7 81 #define GET_SP() gcc_current_sp() /*!> read current SP function for GNU Compiler */
Kojto 101:7cff1c4259d7 82
Kojto 101:7cff1c4259d7 83 static inline unsigned int gcc_current_sp(void)
Kojto 101:7cff1c4259d7 84 {
Kojto 101:7cff1c4259d7 85 register unsigned sp asm("sp");
Kojto 101:7cff1c4259d7 86 return sp;
Kojto 101:7cff1c4259d7 87 }
Kojto 101:7cff1c4259d7 88
Kojto 101:7cff1c4259d7 89 #elif defined ( __TASKING__ )
Kojto 101:7cff1c4259d7 90
Kojto 101:7cff1c4259d7 91 #ifndef __ASM
Kojto 101:7cff1c4259d7 92 #define __ASM __asm /*!< asm keyword for TASKING Compiler */
Kojto 101:7cff1c4259d7 93 #endif
Kojto 101:7cff1c4259d7 94
Kojto 101:7cff1c4259d7 95 #ifndef __INLINE
Kojto 101:7cff1c4259d7 96 #define __INLINE inline /*!< inline keyword for TASKING Compiler */
Kojto 101:7cff1c4259d7 97 #endif
Kojto 101:7cff1c4259d7 98
Kojto 101:7cff1c4259d7 99 #ifndef __WEAK
Kojto 101:7cff1c4259d7 100 #define __WEAK __attribute__((weak)) /*!< weak keyword for TASKING Compiler */
Kojto 101:7cff1c4259d7 101 #endif
Kojto 101:7cff1c4259d7 102
Kojto 101:7cff1c4259d7 103 #define GET_SP() __get_MSP() /*!> read current SP function for TASKING Compiler */
Kojto 101:7cff1c4259d7 104
Kojto 101:7cff1c4259d7 105 #endif
Kojto 101:7cff1c4259d7 106
Kojto 101:7cff1c4259d7 107 /*lint --flb "Leave library region" */
Kojto 101:7cff1c4259d7 108
Kojto 101:7cff1c4259d7 109 #endif