USB Serial application

Fork of USBSerial_HelloWorld by Samuel Mokrani

Committer:
Zaitsev
Date:
Sat Dec 16 10:26:48 2017 +0000
Revision:
11:b3f2a8bdac4d
Parent:
10:41552d038a69
A copy for D.S;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Zaitsev 10:41552d038a69 1 /* mbed Microcontroller Library
Zaitsev 10:41552d038a69 2 * Copyright (c) 2016 ARM Limited
Zaitsev 10:41552d038a69 3 *
Zaitsev 10:41552d038a69 4 * Licensed under the Apache License, Version 2.0 (the "License");
Zaitsev 10:41552d038a69 5 * you may not use this file except in compliance with the License.
Zaitsev 10:41552d038a69 6 * You may obtain a copy of the License at
Zaitsev 10:41552d038a69 7 *
Zaitsev 10:41552d038a69 8 * http://www.apache.org/licenses/LICENSE-2.0
Zaitsev 10:41552d038a69 9 *
Zaitsev 10:41552d038a69 10 * Unless required by applicable law or agreed to in writing, software
Zaitsev 10:41552d038a69 11 * distributed under the License is distributed on an "AS IS" BASIS,
Zaitsev 10:41552d038a69 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Zaitsev 10:41552d038a69 13 * See the License for the specific language governing permissions and
Zaitsev 10:41552d038a69 14 * limitations under the License.
Zaitsev 10:41552d038a69 15 */
Zaitsev 10:41552d038a69 16
Zaitsev 10:41552d038a69 17 #ifndef MBED_MBED_RTX_H
Zaitsev 10:41552d038a69 18 #define MBED_MBED_RTX_H
Zaitsev 10:41552d038a69 19
Zaitsev 10:41552d038a69 20 #if defined(TARGET_NUMAKER_PFM_NUC472)
Zaitsev 10:41552d038a69 21
Zaitsev 10:41552d038a69 22 #ifndef OS_TASKCNT
Zaitsev 10:41552d038a69 23 #define OS_TASKCNT 14
Zaitsev 10:41552d038a69 24 #endif
Zaitsev 10:41552d038a69 25 #ifndef OS_MAINSTKSIZE
Zaitsev 10:41552d038a69 26 #define OS_MAINSTKSIZE 256
Zaitsev 10:41552d038a69 27 #endif
Zaitsev 10:41552d038a69 28 #ifndef OS_CLOCK
Zaitsev 10:41552d038a69 29 #define OS_CLOCK 84000000
Zaitsev 10:41552d038a69 30 #endif
Zaitsev 10:41552d038a69 31
Zaitsev 10:41552d038a69 32 #if defined(__CC_ARM)
Zaitsev 10:41552d038a69 33 extern uint32_t Image$$ARM_LIB_HEAP$$ZI$$Base[];
Zaitsev 10:41552d038a69 34 extern uint32_t Image$$ARM_LIB_HEAP$$ZI$$Length[];
Zaitsev 10:41552d038a69 35 extern uint32_t Image$$ARM_LIB_STACK$$ZI$$Base[];
Zaitsev 10:41552d038a69 36 extern uint32_t Image$$ARM_LIB_STACK$$ZI$$Length[];
Zaitsev 10:41552d038a69 37 #define HEAP_START ((unsigned char*) Image$$ARM_LIB_HEAP$$ZI$$Base)
Zaitsev 10:41552d038a69 38 #define HEAP_SIZE ((uint32_t) Image$$ARM_LIB_HEAP$$ZI$$Length)
Zaitsev 10:41552d038a69 39 #define ISR_STACK_START ((unsigned char*)Image$$ARM_LIB_STACK$$ZI$$Base)
Zaitsev 10:41552d038a69 40 #define ISR_STACK_SIZE ((uint32_t)Image$$ARM_LIB_STACK$$ZI$$Length)
Zaitsev 10:41552d038a69 41 #elif defined(__GNUC__)
Zaitsev 10:41552d038a69 42 extern uint32_t __StackTop[];
Zaitsev 10:41552d038a69 43 extern uint32_t __StackLimit[];
Zaitsev 10:41552d038a69 44 extern uint32_t __end__[];
Zaitsev 10:41552d038a69 45 extern uint32_t __HeapLimit[];
Zaitsev 10:41552d038a69 46 #define HEAP_START ((unsigned char*)__end__)
Zaitsev 10:41552d038a69 47 #define HEAP_SIZE ((uint32_t)((uint32_t)__HeapLimit - (uint32_t)HEAP_START))
Zaitsev 10:41552d038a69 48 #define ISR_STACK_START ((unsigned char*)__StackLimit)
Zaitsev 10:41552d038a69 49 #define ISR_STACK_SIZE ((uint32_t)((uint32_t)__StackTop - (uint32_t)__StackLimit))
Zaitsev 10:41552d038a69 50 #elif defined(__ICCARM__)
Zaitsev 10:41552d038a69 51 /* No region declarations needed */
Zaitsev 10:41552d038a69 52 #else
Zaitsev 10:41552d038a69 53 #error "no toolchain defined"
Zaitsev 10:41552d038a69 54 #endif
Zaitsev 10:41552d038a69 55
Zaitsev 10:41552d038a69 56 #elif defined(TARGET_NUMAKER_PFM_M453)
Zaitsev 10:41552d038a69 57
Zaitsev 10:41552d038a69 58 #ifndef OS_TASKCNT
Zaitsev 10:41552d038a69 59 #define OS_TASKCNT 14
Zaitsev 10:41552d038a69 60 #endif
Zaitsev 10:41552d038a69 61 #ifndef OS_MAINSTKSIZE
Zaitsev 10:41552d038a69 62 #define OS_MAINSTKSIZE 256
Zaitsev 10:41552d038a69 63 #endif
Zaitsev 10:41552d038a69 64 #ifndef OS_CLOCK
Zaitsev 10:41552d038a69 65 #define OS_CLOCK 72000000
Zaitsev 10:41552d038a69 66 #endif
Zaitsev 10:41552d038a69 67
Zaitsev 10:41552d038a69 68 #if defined(__CC_ARM)
Zaitsev 10:41552d038a69 69 extern uint32_t Image$$ARM_LIB_HEAP$$ZI$$Base[];
Zaitsev 10:41552d038a69 70 extern uint32_t Image$$ARM_LIB_HEAP$$ZI$$Length[];
Zaitsev 10:41552d038a69 71 extern uint32_t Image$$ARM_LIB_STACK$$ZI$$Base[];
Zaitsev 10:41552d038a69 72 extern uint32_t Image$$ARM_LIB_STACK$$ZI$$Length[];
Zaitsev 10:41552d038a69 73 #define HEAP_START ((unsigned char*) Image$$ARM_LIB_HEAP$$ZI$$Base)
Zaitsev 10:41552d038a69 74 #define HEAP_SIZE ((uint32_t) Image$$ARM_LIB_HEAP$$ZI$$Length)
Zaitsev 10:41552d038a69 75 #define ISR_STACK_START ((unsigned char*)Image$$ARM_LIB_STACK$$ZI$$Base)
Zaitsev 10:41552d038a69 76 #define ISR_STACK_SIZE ((uint32_t)Image$$ARM_LIB_STACK$$ZI$$Length)
Zaitsev 10:41552d038a69 77 #elif defined(__GNUC__)
Zaitsev 10:41552d038a69 78 extern uint32_t __StackTop[];
Zaitsev 10:41552d038a69 79 extern uint32_t __StackLimit[];
Zaitsev 10:41552d038a69 80 extern uint32_t __end__[];
Zaitsev 10:41552d038a69 81 extern uint32_t __HeapLimit[];
Zaitsev 10:41552d038a69 82 #define HEAP_START ((unsigned char*)__end__)
Zaitsev 10:41552d038a69 83 #define HEAP_SIZE ((uint32_t)((uint32_t)__HeapLimit - (uint32_t)HEAP_START))
Zaitsev 10:41552d038a69 84 #define ISR_STACK_START ((unsigned char*)__StackLimit)
Zaitsev 10:41552d038a69 85 #define ISR_STACK_SIZE ((uint32_t)((uint32_t)__StackTop - (uint32_t)__StackLimit))
Zaitsev 10:41552d038a69 86 #elif defined(__ICCARM__)
Zaitsev 10:41552d038a69 87 /* No region declarations needed */
Zaitsev 10:41552d038a69 88 #else
Zaitsev 10:41552d038a69 89 #error "no toolchain defined"
Zaitsev 10:41552d038a69 90 #endif
Zaitsev 10:41552d038a69 91
Zaitsev 10:41552d038a69 92 #endif
Zaitsev 10:41552d038a69 93
Zaitsev 10:41552d038a69 94 #endif // MBED_MBED_RTX_H