Marco Zecchini
/
Example_RTOS
Rtos API example
mbed-os/targets/TARGET_Realtek/mbed_rtx.h@0:9fca2b23d0ba, 2019-02-23 (annotated)
- Committer:
- marcozecchini
- Date:
- Sat Feb 23 12:13:36 2019 +0000
- Revision:
- 0:9fca2b23d0ba
final commit
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
marcozecchini | 0:9fca2b23d0ba | 1 | /* mbed Microcontroller Library |
marcozecchini | 0:9fca2b23d0ba | 2 | * Copyright (c) 2013-2016 Realtek Semiconductor Corp. |
marcozecchini | 0:9fca2b23d0ba | 3 | * |
marcozecchini | 0:9fca2b23d0ba | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
marcozecchini | 0:9fca2b23d0ba | 5 | * you may not use this file except in compliance with the License. |
marcozecchini | 0:9fca2b23d0ba | 6 | * You may obtain a copy of the License at |
marcozecchini | 0:9fca2b23d0ba | 7 | * |
marcozecchini | 0:9fca2b23d0ba | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
marcozecchini | 0:9fca2b23d0ba | 9 | * |
marcozecchini | 0:9fca2b23d0ba | 10 | * Unless required by applicable law or agreed to in writing, software |
marcozecchini | 0:9fca2b23d0ba | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
marcozecchini | 0:9fca2b23d0ba | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
marcozecchini | 0:9fca2b23d0ba | 13 | * See the License for the specific language governing permissions and |
marcozecchini | 0:9fca2b23d0ba | 14 | * limitations under the License. |
marcozecchini | 0:9fca2b23d0ba | 15 | */ |
marcozecchini | 0:9fca2b23d0ba | 16 | #ifndef MBED_MBED_RTX_H |
marcozecchini | 0:9fca2b23d0ba | 17 | #define MBED_MBED_RTX_H |
marcozecchini | 0:9fca2b23d0ba | 18 | |
marcozecchini | 0:9fca2b23d0ba | 19 | #if defined(TARGET_RTL8195A) |
marcozecchini | 0:9fca2b23d0ba | 20 | |
marcozecchini | 0:9fca2b23d0ba | 21 | #include "rtl8195a.h" |
marcozecchini | 0:9fca2b23d0ba | 22 | |
marcozecchini | 0:9fca2b23d0ba | 23 | #if defined(__CC_ARM) || (defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050)) |
marcozecchini | 0:9fca2b23d0ba | 24 | extern uint32_t Image$$ARM_LIB_STACK$$ZI$$Base[]; |
marcozecchini | 0:9fca2b23d0ba | 25 | extern uint32_t Image$$ARM_LIB_STACK$$ZI$$Length[]; |
marcozecchini | 0:9fca2b23d0ba | 26 | #define ISR_STACK_START (unsigned char *)(Image$$ARM_LIB_STACK$$ZI$$Base) |
marcozecchini | 0:9fca2b23d0ba | 27 | #define ISR_STACK_SIZE (uint32_t)(Image$$ARM_LIB_STACK$$ZI$$Length) |
marcozecchini | 0:9fca2b23d0ba | 28 | #define INITIAL_SP (uint32_t)(Image$$ARM_LIB_STACK$$ZI$$Base) |
marcozecchini | 0:9fca2b23d0ba | 29 | #elif defined(__GNUC__) |
marcozecchini | 0:9fca2b23d0ba | 30 | extern uint32_t __StackTop[]; |
marcozecchini | 0:9fca2b23d0ba | 31 | extern uint32_t __StackLimit[]; |
marcozecchini | 0:9fca2b23d0ba | 32 | extern uint32_t __HeapLimit[]; |
marcozecchini | 0:9fca2b23d0ba | 33 | #define INITIAL_SP (__StackTop) |
marcozecchini | 0:9fca2b23d0ba | 34 | #endif |
marcozecchini | 0:9fca2b23d0ba | 35 | |
marcozecchini | 0:9fca2b23d0ba | 36 | #if defined(__GNUC__) |
marcozecchini | 0:9fca2b23d0ba | 37 | #ifndef ISR_STACK_SIZE |
marcozecchini | 0:9fca2b23d0ba | 38 | #define ISR_STACK_SIZE (0x1000) |
marcozecchini | 0:9fca2b23d0ba | 39 | #endif |
marcozecchini | 0:9fca2b23d0ba | 40 | #endif |
marcozecchini | 0:9fca2b23d0ba | 41 | |
marcozecchini | 0:9fca2b23d0ba | 42 | #endif |
marcozecchini | 0:9fca2b23d0ba | 43 | #endif |