The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

mbed 2

This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.

Committer:
AnnaBridge
Date:
Fri Sep 15 14:46:57 2017 +0100
Revision:
151:675da3299148
Parent:
145:64910690c574
Release 151 of the mbed library.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
<> 139:856d2700e60b 1 /* mbed Microcontroller Library
<> 139:856d2700e60b 2 * Copyright (c) 2016 ARM Limited
<> 139:856d2700e60b 3 *
<> 139:856d2700e60b 4 * Licensed under the Apache License, Version 2.0 (the "License");
<> 139:856d2700e60b 5 * you may not use this file except in compliance with the License.
<> 139:856d2700e60b 6 * You may obtain a copy of the License at
<> 139:856d2700e60b 7 *
<> 139:856d2700e60b 8 * http://www.apache.org/licenses/LICENSE-2.0
<> 139:856d2700e60b 9 *
<> 139:856d2700e60b 10 * Unless required by applicable law or agreed to in writing, software
<> 139:856d2700e60b 11 * distributed under the License is distributed on an "AS IS" BASIS,
<> 139:856d2700e60b 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
<> 139:856d2700e60b 13 * See the License for the specific language governing permissions and
<> 139:856d2700e60b 14 * limitations under the License.
<> 139:856d2700e60b 15 */
<> 139:856d2700e60b 16
<> 139:856d2700e60b 17 #ifndef MBED_MBED_RTX_H
<> 139:856d2700e60b 18 #define MBED_MBED_RTX_H
<> 139:856d2700e60b 19
AnnaBridge 145:64910690c574 20 #include <stdint.h>
<> 139:856d2700e60b 21 #include "clocking.h"
<> 139:856d2700e60b 22
<> 139:856d2700e60b 23 #if defined(TARGET_EFM32GG_STK3700)
<> 139:856d2700e60b 24
<> 139:856d2700e60b 25 #ifndef INITIAL_SP
<> 139:856d2700e60b 26 #define INITIAL_SP (0x20020000UL)
<> 139:856d2700e60b 27 #endif
<> 139:856d2700e60b 28
<> 139:856d2700e60b 29 #elif defined(TARGET_EFM32HG_STK3400)
<> 139:856d2700e60b 30
<> 139:856d2700e60b 31 #ifndef INITIAL_SP
<> 139:856d2700e60b 32 #define INITIAL_SP (0x20002000UL)
<> 139:856d2700e60b 33 #endif
<> 139:856d2700e60b 34
<> 139:856d2700e60b 35 #elif defined(TARGET_EFM32LG_STK3600)
<> 139:856d2700e60b 36
<> 139:856d2700e60b 37 #ifndef INITIAL_SP
<> 139:856d2700e60b 38 #define INITIAL_SP (0x20008000UL)
<> 139:856d2700e60b 39 #endif
<> 139:856d2700e60b 40
<> 139:856d2700e60b 41 #elif defined(TARGET_EFM32PG_STK3401)
<> 139:856d2700e60b 42
<> 139:856d2700e60b 43 #ifndef INITIAL_SP
<> 139:856d2700e60b 44 #define INITIAL_SP (0x20008000UL)
<> 139:856d2700e60b 45 #endif
<> 139:856d2700e60b 46
<> 139:856d2700e60b 47 #elif defined(TARGET_EFM32WG_STK3800)
<> 139:856d2700e60b 48
<> 139:856d2700e60b 49 #ifndef INITIAL_SP
<> 139:856d2700e60b 50 #define INITIAL_SP (0x20008000UL)
<> 139:856d2700e60b 51 #endif
<> 139:856d2700e60b 52
<> 139:856d2700e60b 53 #elif defined(TARGET_EFR32MG1)
<> 139:856d2700e60b 54
<> 139:856d2700e60b 55 #ifndef INITIAL_SP
<> 139:856d2700e60b 56 #define INITIAL_SP (0x20007C00UL)
<> 139:856d2700e60b 57 #endif
<> 139:856d2700e60b 58
<> 139:856d2700e60b 59 #elif defined(TARGET_EFR32MG12) || defined(TARGET_EFM32PG12)
<> 139:856d2700e60b 60
<> 139:856d2700e60b 61 #ifndef INITIAL_SP
<> 139:856d2700e60b 62 #define INITIAL_SP (0x20040000UL)
<> 139:856d2700e60b 63 #endif
<> 139:856d2700e60b 64
<> 139:856d2700e60b 65 #endif
<> 139:856d2700e60b 66
<> 139:856d2700e60b 67 #endif // MBED_MBED_RTX_H