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:
Kojto
Date:
Wed Jul 19 16:46:19 2017 +0100
Revision:
147:a97add6d7e64
Parent:
145:64910690c574
Release 147 of the mbed library.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
<> 128:9bcdf88f62b0 1 /* mbed Microcontroller Library
<> 128:9bcdf88f62b0 2 * Copyright (c) 2016 ARM Limited
<> 128:9bcdf88f62b0 3 *
<> 128:9bcdf88f62b0 4 * Licensed under the Apache License, Version 2.0 (the "License");
<> 128:9bcdf88f62b0 5 * you may not use this file except in compliance with the License.
<> 128:9bcdf88f62b0 6 * You may obtain a copy of the License at
<> 128:9bcdf88f62b0 7 *
<> 128:9bcdf88f62b0 8 * http://www.apache.org/licenses/LICENSE-2.0
<> 128:9bcdf88f62b0 9 *
<> 128:9bcdf88f62b0 10 * Unless required by applicable law or agreed to in writing, software
<> 128:9bcdf88f62b0 11 * distributed under the License is distributed on an "AS IS" BASIS,
<> 128:9bcdf88f62b0 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
<> 128:9bcdf88f62b0 13 * See the License for the specific language governing permissions and
<> 128:9bcdf88f62b0 14 * limitations under the License.
<> 128:9bcdf88f62b0 15 */
<> 128:9bcdf88f62b0 16
<> 128:9bcdf88f62b0 17 #ifndef MBED_MBED_RTX_H
<> 128:9bcdf88f62b0 18 #define MBED_MBED_RTX_H
<> 128:9bcdf88f62b0 19
<> 128:9bcdf88f62b0 20 #if defined(TARGET_K20D50M)
<> 128:9bcdf88f62b0 21
<> 128:9bcdf88f62b0 22 #ifndef INITIAL_SP
<> 128:9bcdf88f62b0 23 #define INITIAL_SP (0x10008000UL)
<> 128:9bcdf88f62b0 24 #endif
<> 128:9bcdf88f62b0 25
<> 128:9bcdf88f62b0 26 #elif defined(TARGET_TEENSY3_1)
<> 128:9bcdf88f62b0 27
<> 128:9bcdf88f62b0 28 #ifndef INITIAL_SP
<> 128:9bcdf88f62b0 29 #define INITIAL_SP (0x20008000UL)
<> 128:9bcdf88f62b0 30 #endif
<> 128:9bcdf88f62b0 31
<> 129:0ab6a29f35bf 32 #elif defined(TARGET_MCU_K22F)
<> 128:9bcdf88f62b0 33
<> 128:9bcdf88f62b0 34 #ifndef INITIAL_SP
<> 128:9bcdf88f62b0 35 #define INITIAL_SP (0x20010000UL)
<> 128:9bcdf88f62b0 36 #endif
<> 128:9bcdf88f62b0 37
<> 128:9bcdf88f62b0 38 #elif defined(TARGET_K66F)
<> 128:9bcdf88f62b0 39
<> 128:9bcdf88f62b0 40 #ifndef INITIAL_SP
<> 128:9bcdf88f62b0 41 #define INITIAL_SP (0x20030000UL)
<> 128:9bcdf88f62b0 42 #endif
<> 128:9bcdf88f62b0 43
<> 128:9bcdf88f62b0 44 #elif defined(TARGET_KL27Z)
<> 128:9bcdf88f62b0 45
<> 128:9bcdf88f62b0 46 #ifndef INITIAL_SP
<> 128:9bcdf88f62b0 47 #define INITIAL_SP (0x20003000UL)
<> 128:9bcdf88f62b0 48 #endif
<> 128:9bcdf88f62b0 49
<> 128:9bcdf88f62b0 50 #elif defined(TARGET_KL43Z)
<> 128:9bcdf88f62b0 51
<> 128:9bcdf88f62b0 52 #ifndef INITIAL_SP
<> 128:9bcdf88f62b0 53 #define INITIAL_SP (0x20006000UL)
<> 128:9bcdf88f62b0 54 #endif
<> 128:9bcdf88f62b0 55
<> 128:9bcdf88f62b0 56 #elif defined(TARGET_KL05Z)
<> 128:9bcdf88f62b0 57
<> 128:9bcdf88f62b0 58 #ifndef INITIAL_SP
<> 128:9bcdf88f62b0 59 #define INITIAL_SP (0x20000C00UL)
<> 128:9bcdf88f62b0 60 #endif
<> 128:9bcdf88f62b0 61
<> 128:9bcdf88f62b0 62 #elif defined(TARGET_KL25Z)
<> 128:9bcdf88f62b0 63
<> 128:9bcdf88f62b0 64 #ifndef INITIAL_SP
<> 128:9bcdf88f62b0 65 #define INITIAL_SP (0x20003000UL)
<> 128:9bcdf88f62b0 66 #endif
<> 128:9bcdf88f62b0 67
<> 128:9bcdf88f62b0 68 #elif defined(TARGET_KL26Z)
<> 128:9bcdf88f62b0 69
<> 128:9bcdf88f62b0 70 #ifndef INITIAL_SP
<> 128:9bcdf88f62b0 71 #define INITIAL_SP (0x20003000UL)
<> 128:9bcdf88f62b0 72 #endif
<> 128:9bcdf88f62b0 73
<> 128:9bcdf88f62b0 74 #elif defined(TARGET_KL46Z)
<> 128:9bcdf88f62b0 75
<> 128:9bcdf88f62b0 76 #ifndef INITIAL_SP
<> 128:9bcdf88f62b0 77 #define INITIAL_SP (0x20006000UL)
<> 128:9bcdf88f62b0 78 #endif
<> 128:9bcdf88f62b0 79
<> 128:9bcdf88f62b0 80 #elif defined(TARGET_KL82Z)
<> 128:9bcdf88f62b0 81
<> 128:9bcdf88f62b0 82 #ifndef INITIAL_SP
<> 128:9bcdf88f62b0 83 #define INITIAL_SP (0x20012000UL)
<> 128:9bcdf88f62b0 84 #endif
<> 128:9bcdf88f62b0 85
<> 128:9bcdf88f62b0 86 #elif defined(TARGET_K64F)
<> 128:9bcdf88f62b0 87
<> 128:9bcdf88f62b0 88 #ifndef INITIAL_SP
<> 128:9bcdf88f62b0 89 #define INITIAL_SP (0x20030000UL)
<> 128:9bcdf88f62b0 90 #endif
<> 128:9bcdf88f62b0 91
<> 128:9bcdf88f62b0 92 #elif defined(TARGET_KW24D)
<> 128:9bcdf88f62b0 93
<> 128:9bcdf88f62b0 94 #ifndef INITIAL_SP
<> 128:9bcdf88f62b0 95 #define INITIAL_SP (0x20008000UL)
<> 128:9bcdf88f62b0 96 #endif
<> 128:9bcdf88f62b0 97
<> 132:9baf128c2fab 98 #elif defined(TARGET_KW41Z)
<> 132:9baf128c2fab 99
<> 132:9baf128c2fab 100 #ifndef INITIAL_SP
<> 132:9baf128c2fab 101 #define INITIAL_SP (0x20018000UL)
<> 132:9baf128c2fab 102 #endif
<> 132:9baf128c2fab 103
<> 129:0ab6a29f35bf 104 #elif defined(TARGET_K82F)
<> 129:0ab6a29f35bf 105
<> 129:0ab6a29f35bf 106 #ifndef INITIAL_SP
<> 129:0ab6a29f35bf 107 #define INITIAL_SP (0x20030000UL)
<> 129:0ab6a29f35bf 108 #endif
<> 129:0ab6a29f35bf 109
AnnaBridge 143:86740a56073b 110 #elif defined(TARGET_RO359B)
AnnaBridge 143:86740a56073b 111
AnnaBridge 143:86740a56073b 112 #ifndef INITIAL_SP
AnnaBridge 143:86740a56073b 113 #define INITIAL_SP (0x20030000UL)
AnnaBridge 143:86740a56073b 114 #endif
AnnaBridge 143:86740a56073b 115
<> 128:9bcdf88f62b0 116 #endif
<> 128:9bcdf88f62b0 117
<> 128:9bcdf88f62b0 118 #endif // MBED_MBED_RTX_H