Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: hello SerialTestv11 SerialTestv12 Sierpinski ... more
TARGET_LPC1114/TARGET_NXP/mbed_rtx.h@148:fd96258d940d, 2017-08-03 (annotated)
- Committer:
- Kojto
- Date:
- Thu Aug 03 13:37:00 2017 +0100
- Revision:
- 148:fd96258d940d
- Parent:
- 145:64910690c574
- Child:
- 153:b484a57bc302
Release 148 of the mbed library.
Who changed what in which revision?
| User | Revision | Line number | New 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_LPC11U68) |
| <> | 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_LPC11U24) \ |
| <> | 128:9bcdf88f62b0 | 27 | || defined(TARGET_LPC11U35_401) \ |
| <> | 128:9bcdf88f62b0 | 28 | || defined(TARGET_LPC11U35_501) \ |
| <> | 128:9bcdf88f62b0 | 29 | || defined(TARGET_LPCCAPPUCCINO) |
| <> | 128:9bcdf88f62b0 | 30 | |
| <> | 128:9bcdf88f62b0 | 31 | #ifndef INITIAL_SP |
| <> | 128:9bcdf88f62b0 | 32 | #define INITIAL_SP (0x10002000UL) |
| <> | 128:9bcdf88f62b0 | 33 | #endif |
| <> | 128:9bcdf88f62b0 | 34 | |
| <> | 128:9bcdf88f62b0 | 35 | #elif defined(TARGET_LPC1114) |
| <> | 128:9bcdf88f62b0 | 36 | |
| <> | 128:9bcdf88f62b0 | 37 | #ifndef INITIAL_SP |
| <> | 128:9bcdf88f62b0 | 38 | #define INITIAL_SP (0x10001000UL) |
| <> | 128:9bcdf88f62b0 | 39 | #endif |
| <> | 128:9bcdf88f62b0 | 40 | |
| <> | 128:9bcdf88f62b0 | 41 | #elif defined(TARGET_LPC1347) |
| <> | 128:9bcdf88f62b0 | 42 | |
| <> | 128:9bcdf88f62b0 | 43 | #ifndef INITIAL_SP |
| <> | 128:9bcdf88f62b0 | 44 | #define INITIAL_SP (0x10002000UL) |
| <> | 128:9bcdf88f62b0 | 45 | #endif |
| <> | 128:9bcdf88f62b0 | 46 | |
| <> | 128:9bcdf88f62b0 | 47 | #elif defined(TARGET_LPC1549) |
| <> | 128:9bcdf88f62b0 | 48 | |
| <> | 128:9bcdf88f62b0 | 49 | #ifndef INITIAL_SP |
| <> | 128:9bcdf88f62b0 | 50 | #define INITIAL_SP (0x02009000UL) |
| <> | 128:9bcdf88f62b0 | 51 | #endif |
| <> | 128:9bcdf88f62b0 | 52 | |
| <> | 128:9bcdf88f62b0 | 53 | #elif defined(TARGET_LPC1768) |
| <> | 128:9bcdf88f62b0 | 54 | |
| <> | 128:9bcdf88f62b0 | 55 | #ifndef INITIAL_SP |
| <> | 128:9bcdf88f62b0 | 56 | #define INITIAL_SP (0x10008000UL) |
| <> | 128:9bcdf88f62b0 | 57 | #endif |
| <> | 128:9bcdf88f62b0 | 58 | |
| <> | 128:9bcdf88f62b0 | 59 | #elif defined(TARGET_LPC4088) || defined(TARGET_LPC4088_DM) |
| <> | 128:9bcdf88f62b0 | 60 | |
| <> | 128:9bcdf88f62b0 | 61 | #ifndef INITIAL_SP |
| <> | 128:9bcdf88f62b0 | 62 | #define INITIAL_SP (0x10010000UL) |
| <> | 128:9bcdf88f62b0 | 63 | #endif |
| <> | 128:9bcdf88f62b0 | 64 | |
| <> | 128:9bcdf88f62b0 | 65 | #elif defined(TARGET_LPC4330) || defined(TARGET_LPC4337) |
| <> | 128:9bcdf88f62b0 | 66 | |
| <> | 128:9bcdf88f62b0 | 67 | #ifndef INITIAL_SP |
| <> | 128:9bcdf88f62b0 | 68 | #define INITIAL_SP (0x10008000UL) |
| <> | 128:9bcdf88f62b0 | 69 | #endif |
| <> | 128:9bcdf88f62b0 | 70 | |
| <> | 128:9bcdf88f62b0 | 71 | #elif defined(TARGET_LPC812) |
| <> | 128:9bcdf88f62b0 | 72 | |
| <> | 128:9bcdf88f62b0 | 73 | #ifndef INITIAL_SP |
| <> | 128:9bcdf88f62b0 | 74 | #define INITIAL_SP (0x10001000UL) |
| <> | 128:9bcdf88f62b0 | 75 | #endif |
| <> | 128:9bcdf88f62b0 | 76 | |
| <> | 128:9bcdf88f62b0 | 77 | #elif defined(TARGET_LPC824) || defined(TARGET_SSCI824) |
| <> | 128:9bcdf88f62b0 | 78 | |
| <> | 128:9bcdf88f62b0 | 79 | #ifndef INITIAL_SP |
| <> | 128:9bcdf88f62b0 | 80 | #define INITIAL_SP (0x10002000UL) |
| <> | 128:9bcdf88f62b0 | 81 | #endif |
| <> | 128:9bcdf88f62b0 | 82 | |
| Kojto | 148:fd96258d940d | 83 | #elif defined(TARGET_LPC54114_M4) |
| Kojto | 148:fd96258d940d | 84 | |
| Kojto | 148:fd96258d940d | 85 | #ifndef INITIAL_SP |
| Kojto | 148:fd96258d940d | 86 | #define INITIAL_SP (0x20010000UL) |
| Kojto | 148:fd96258d940d | 87 | #endif |
| Kojto | 148:fd96258d940d | 88 | |
| Kojto | 148:fd96258d940d | 89 | #elif defined(TARGET_LPC54608) |
| Kojto | 148:fd96258d940d | 90 | |
| Kojto | 148:fd96258d940d | 91 | #ifndef INITIAL_SP |
| Kojto | 148:fd96258d940d | 92 | #define INITIAL_SP (0x20028000UL) |
| Kojto | 148:fd96258d940d | 93 | #endif |
| Kojto | 148:fd96258d940d | 94 | |
| <> | 128:9bcdf88f62b0 | 95 | #endif |
| <> | 128:9bcdf88f62b0 | 96 | |
| <> | 128:9bcdf88f62b0 | 97 | #endif // MBED_MBED_RTX_H |


