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-rtos/targets/TARGET_ONSEMI/mbed_rtx4.h@0:a59a3d743804, 2022-03-31 (annotated)
- Committer:
- anasse
- Date:
- Thu Mar 31 07:43:50 2022 +0000
- Revision:
- 0:a59a3d743804
vers0
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
anasse | 0:a59a3d743804 | 1 | /* mbed Microcontroller Library |
anasse | 0:a59a3d743804 | 2 | * Copyright (c) 2016 ARM Limited |
anasse | 0:a59a3d743804 | 3 | * |
anasse | 0:a59a3d743804 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
anasse | 0:a59a3d743804 | 5 | * you may not use this file except in compliance with the License. |
anasse | 0:a59a3d743804 | 6 | * You may obtain a copy of the License at |
anasse | 0:a59a3d743804 | 7 | * |
anasse | 0:a59a3d743804 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
anasse | 0:a59a3d743804 | 9 | * |
anasse | 0:a59a3d743804 | 10 | * Unless required by applicable law or agreed to in writing, software |
anasse | 0:a59a3d743804 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
anasse | 0:a59a3d743804 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
anasse | 0:a59a3d743804 | 13 | * See the License for the specific language governing permissions and |
anasse | 0:a59a3d743804 | 14 | * limitations under the License. |
anasse | 0:a59a3d743804 | 15 | */ |
anasse | 0:a59a3d743804 | 16 | |
anasse | 0:a59a3d743804 | 17 | #ifndef MBED_MBED_RTX_H |
anasse | 0:a59a3d743804 | 18 | #define MBED_MBED_RTX_H |
anasse | 0:a59a3d743804 | 19 | |
anasse | 0:a59a3d743804 | 20 | #if defined(TARGET_NCS36510) |
anasse | 0:a59a3d743804 | 21 | |
anasse | 0:a59a3d743804 | 22 | #ifndef INITIAL_SP |
anasse | 0:a59a3d743804 | 23 | #define INITIAL_SP (0x40000000UL) |
anasse | 0:a59a3d743804 | 24 | #endif |
anasse | 0:a59a3d743804 | 25 | |
anasse | 0:a59a3d743804 | 26 | // RTX 4 only config below, for backward-compability |
anasse | 0:a59a3d743804 | 27 | |
anasse | 0:a59a3d743804 | 28 | #ifndef OS_TASKCNT |
anasse | 0:a59a3d743804 | 29 | #define OS_TASKCNT 14 |
anasse | 0:a59a3d743804 | 30 | #endif |
anasse | 0:a59a3d743804 | 31 | #ifndef OS_MAINSTKSIZE |
anasse | 0:a59a3d743804 | 32 | #define OS_MAINSTKSIZE 256 |
anasse | 0:a59a3d743804 | 33 | #endif |
anasse | 0:a59a3d743804 | 34 | #ifndef OS_CLOCK |
anasse | 0:a59a3d743804 | 35 | #define OS_CLOCK 32000000 |
anasse | 0:a59a3d743804 | 36 | #endif |
anasse | 0:a59a3d743804 | 37 | |
anasse | 0:a59a3d743804 | 38 | #endif |
anasse | 0:a59a3d743804 | 39 | |
anasse | 0:a59a3d743804 | 40 | #endif // MBED_MBED_RTX_H |