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:
elijahorr
Date:
Thu Apr 14 07:28:54 2016 +0000
Revision:
121:672067c3ada4
Parent:
113:f141b2784e32
.

Who changed what in which revision?

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