mbed official / mbed

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

Committer:
AnnaBridge
Date:
Wed Jun 21 17:31:38 2017 +0100
Revision:
145:64910690c574
Parent:
143:86740a56073b
Release 145 of the mbed library.

Who changed what in which revision?

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