takashi kadono
/
Nucleo_446
Color Oled(SSD1331) connect to STMicroelectronics Nucleo-F466
mbed-os/targets/TARGET_NUVOTON/mbed_rtx.h@0:8fdf9a60065b, 2018-10-10 (annotated)
- Committer:
- kadonotakashi
- Date:
- Wed Oct 10 00:33:53 2018 +0000
- Revision:
- 0:8fdf9a60065b
how to make mbed librry
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
kadonotakashi | 0:8fdf9a60065b | 1 | /* mbed Microcontroller Library |
kadonotakashi | 0:8fdf9a60065b | 2 | * Copyright (c) 2016 ARM Limited |
kadonotakashi | 0:8fdf9a60065b | 3 | * |
kadonotakashi | 0:8fdf9a60065b | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
kadonotakashi | 0:8fdf9a60065b | 5 | * you may not use this file except in compliance with the License. |
kadonotakashi | 0:8fdf9a60065b | 6 | * You may obtain a copy of the License at |
kadonotakashi | 0:8fdf9a60065b | 7 | * |
kadonotakashi | 0:8fdf9a60065b | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
kadonotakashi | 0:8fdf9a60065b | 9 | * |
kadonotakashi | 0:8fdf9a60065b | 10 | * Unless required by applicable law or agreed to in writing, software |
kadonotakashi | 0:8fdf9a60065b | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
kadonotakashi | 0:8fdf9a60065b | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
kadonotakashi | 0:8fdf9a60065b | 13 | * See the License for the specific language governing permissions and |
kadonotakashi | 0:8fdf9a60065b | 14 | * limitations under the License. |
kadonotakashi | 0:8fdf9a60065b | 15 | */ |
kadonotakashi | 0:8fdf9a60065b | 16 | |
kadonotakashi | 0:8fdf9a60065b | 17 | #ifndef MBED_MBED_RTX_H |
kadonotakashi | 0:8fdf9a60065b | 18 | #define MBED_MBED_RTX_H |
kadonotakashi | 0:8fdf9a60065b | 19 | |
kadonotakashi | 0:8fdf9a60065b | 20 | #include <stdint.h> |
kadonotakashi | 0:8fdf9a60065b | 21 | |
kadonotakashi | 0:8fdf9a60065b | 22 | #if defined(TARGET_NUVOTON) |
kadonotakashi | 0:8fdf9a60065b | 23 | |
kadonotakashi | 0:8fdf9a60065b | 24 | #if defined(__CC_ARM) || (defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050)) |
kadonotakashi | 0:8fdf9a60065b | 25 | extern uint32_t Image$$ARM_LIB_HEAP$$ZI$$Base[]; |
kadonotakashi | 0:8fdf9a60065b | 26 | extern uint32_t Image$$ARM_LIB_HEAP$$ZI$$Length[]; |
kadonotakashi | 0:8fdf9a60065b | 27 | extern uint32_t Image$$ARM_LIB_STACK$$ZI$$Base[]; |
kadonotakashi | 0:8fdf9a60065b | 28 | extern uint32_t Image$$ARM_LIB_STACK$$ZI$$Length[]; |
kadonotakashi | 0:8fdf9a60065b | 29 | #define HEAP_START ((unsigned char*) Image$$ARM_LIB_HEAP$$ZI$$Base) |
kadonotakashi | 0:8fdf9a60065b | 30 | #define HEAP_SIZE ((uint32_t) Image$$ARM_LIB_HEAP$$ZI$$Length) |
kadonotakashi | 0:8fdf9a60065b | 31 | #define ISR_STACK_START ((unsigned char*)Image$$ARM_LIB_STACK$$ZI$$Base) |
kadonotakashi | 0:8fdf9a60065b | 32 | #define ISR_STACK_SIZE ((uint32_t)Image$$ARM_LIB_STACK$$ZI$$Length) |
kadonotakashi | 0:8fdf9a60065b | 33 | #elif defined(__GNUC__) |
kadonotakashi | 0:8fdf9a60065b | 34 | extern uint32_t __StackTop; |
kadonotakashi | 0:8fdf9a60065b | 35 | extern uint32_t __StackLimit; |
kadonotakashi | 0:8fdf9a60065b | 36 | extern uint32_t __end__; |
kadonotakashi | 0:8fdf9a60065b | 37 | extern uint32_t __HeapLimit; |
kadonotakashi | 0:8fdf9a60065b | 38 | #define HEAP_START ((unsigned char*) &__end__) |
kadonotakashi | 0:8fdf9a60065b | 39 | #define HEAP_SIZE ((uint32_t) ((uint32_t) &__HeapLimit - (uint32_t) HEAP_START)) |
kadonotakashi | 0:8fdf9a60065b | 40 | #define ISR_STACK_START ((unsigned char*) &__StackLimit) |
kadonotakashi | 0:8fdf9a60065b | 41 | #define ISR_STACK_SIZE ((uint32_t)((uint32_t) &__StackTop - (uint32_t) &__StackLimit)) |
kadonotakashi | 0:8fdf9a60065b | 42 | #elif defined(__ICCARM__) |
kadonotakashi | 0:8fdf9a60065b | 43 | /* No region declarations needed */ |
kadonotakashi | 0:8fdf9a60065b | 44 | #else |
kadonotakashi | 0:8fdf9a60065b | 45 | #error "no toolchain defined" |
kadonotakashi | 0:8fdf9a60065b | 46 | #endif |
kadonotakashi | 0:8fdf9a60065b | 47 | |
kadonotakashi | 0:8fdf9a60065b | 48 | #endif // TARGET_NUVOTON |
kadonotakashi | 0:8fdf9a60065b | 49 | |
kadonotakashi | 0:8fdf9a60065b | 50 | #endif // MBED_MBED_RTX_H |