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