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 #include "clocking.h"
Zaitsev 10:41552d038a69 21
Zaitsev 10:41552d038a69 22 #ifndef OS_CLOCK
Zaitsev 10:41552d038a69 23 #define OS_CLOCK REFERENCE_FREQUENCY
Zaitsev 10:41552d038a69 24 #endif
Zaitsev 10:41552d038a69 25
Zaitsev 10:41552d038a69 26 #if defined(__CC_ARM)
Zaitsev 10:41552d038a69 27 extern uint32_t HEAP$$Base;
Zaitsev 10:41552d038a69 28 extern uint32_t HEAP$$Limit;
Zaitsev 10:41552d038a69 29 extern uint32_t STACK$$Limit;
Zaitsev 10:41552d038a69 30 extern uint32_t STACK$$Base;
Zaitsev 10:41552d038a69 31 #ifndef INITIAL_SP
Zaitsev 10:41552d038a69 32 #define INITIAL_SP ((uint32_t)&STACK$$Limit)
Zaitsev 10:41552d038a69 33 #endif
Zaitsev 10:41552d038a69 34 #define ISR_STACK_START ((uint32_t)&STACK$$Base)
Zaitsev 10:41552d038a69 35 #define ISR_STACK_SIZE ((uint32_t) ((uint32_t)&STACK$$Limit - (uint32_t)&STACK$$Base))
Zaitsev 10:41552d038a69 36 #define HEAP_START ((unsigned char*) ((uint32_t)&HEAP$$Base))
Zaitsev 10:41552d038a69 37 #define HEAP_SIZE ((uint32_t) ((uint32_t)&HEAP$$Limit - (uint32_t)&HEAP$$Base))
Zaitsev 10:41552d038a69 38 #endif
Zaitsev 10:41552d038a69 39
Zaitsev 10:41552d038a69 40 #if defined(TARGET_EFM32GG_STK3700)
Zaitsev 10:41552d038a69 41
Zaitsev 10:41552d038a69 42 #ifndef INITIAL_SP
Zaitsev 10:41552d038a69 43 #define INITIAL_SP (0x20020000UL)
Zaitsev 10:41552d038a69 44 #endif
Zaitsev 10:41552d038a69 45
Zaitsev 10:41552d038a69 46 #ifndef OS_TASKCNT
Zaitsev 10:41552d038a69 47 #define OS_TASKCNT 14
Zaitsev 10:41552d038a69 48 #endif
Zaitsev 10:41552d038a69 49 #ifndef OS_MAINSTKSIZE
Zaitsev 10:41552d038a69 50 #define OS_MAINSTKSIZE 256
Zaitsev 10:41552d038a69 51 #endif
Zaitsev 10:41552d038a69 52
Zaitsev 10:41552d038a69 53 #elif defined(TARGET_EFM32HG_STK3400)
Zaitsev 10:41552d038a69 54
Zaitsev 10:41552d038a69 55 #ifndef INITIAL_SP
Zaitsev 10:41552d038a69 56 #define INITIAL_SP (0x20002000UL)
Zaitsev 10:41552d038a69 57 #endif
Zaitsev 10:41552d038a69 58
Zaitsev 10:41552d038a69 59 #ifndef OS_TASKCNT
Zaitsev 10:41552d038a69 60 #define OS_TASKCNT 6
Zaitsev 10:41552d038a69 61 #endif
Zaitsev 10:41552d038a69 62 #ifndef OS_MAINSTKSIZE
Zaitsev 10:41552d038a69 63 #define OS_MAINSTKSIZE 112
Zaitsev 10:41552d038a69 64 #endif
Zaitsev 10:41552d038a69 65
Zaitsev 10:41552d038a69 66 #elif defined(TARGET_EFM32LG_STK3600)
Zaitsev 10:41552d038a69 67
Zaitsev 10:41552d038a69 68 #ifndef INITIAL_SP
Zaitsev 10:41552d038a69 69 #define INITIAL_SP (0x20008000UL)
Zaitsev 10:41552d038a69 70 #endif
Zaitsev 10:41552d038a69 71
Zaitsev 10:41552d038a69 72 #ifndef OS_TASKCNT
Zaitsev 10:41552d038a69 73 #define OS_TASKCNT 14
Zaitsev 10:41552d038a69 74 #endif
Zaitsev 10:41552d038a69 75 #ifndef OS_MAINSTKSIZE
Zaitsev 10:41552d038a69 76 #define OS_MAINSTKSIZE 128
Zaitsev 10:41552d038a69 77 #endif
Zaitsev 10:41552d038a69 78
Zaitsev 10:41552d038a69 79 #elif defined(TARGET_EFM32PG_STK3401)
Zaitsev 10:41552d038a69 80
Zaitsev 10:41552d038a69 81 #ifndef INITIAL_SP
Zaitsev 10:41552d038a69 82 #define INITIAL_SP (0x20008000UL)
Zaitsev 10:41552d038a69 83 #endif
Zaitsev 10:41552d038a69 84
Zaitsev 10:41552d038a69 85 #ifndef OS_TASKCNT
Zaitsev 10:41552d038a69 86 #define OS_TASKCNT 14
Zaitsev 10:41552d038a69 87 #endif
Zaitsev 10:41552d038a69 88 #ifndef OS_MAINSTKSIZE
Zaitsev 10:41552d038a69 89 #define OS_MAINSTKSIZE 128
Zaitsev 10:41552d038a69 90 #endif
Zaitsev 10:41552d038a69 91
Zaitsev 10:41552d038a69 92 #elif defined(TARGET_EFM32WG_STK3800)
Zaitsev 10:41552d038a69 93
Zaitsev 10:41552d038a69 94 #ifndef INITIAL_SP
Zaitsev 10:41552d038a69 95 #define INITIAL_SP (0x20008000UL)
Zaitsev 10:41552d038a69 96 #endif
Zaitsev 10:41552d038a69 97
Zaitsev 10:41552d038a69 98 #ifndef OS_TASKCNT
Zaitsev 10:41552d038a69 99 #define OS_TASKCNT 14
Zaitsev 10:41552d038a69 100 #endif
Zaitsev 10:41552d038a69 101 #ifndef OS_MAINSTKSIZE
Zaitsev 10:41552d038a69 102 #define OS_MAINSTKSIZE 128
Zaitsev 10:41552d038a69 103 #endif
Zaitsev 10:41552d038a69 104
Zaitsev 10:41552d038a69 105 #elif defined(TARGET_EFR32MG1)
Zaitsev 10:41552d038a69 106
Zaitsev 10:41552d038a69 107 #ifndef INITIAL_SP
Zaitsev 10:41552d038a69 108 #define INITIAL_SP (0x20007C00UL)
Zaitsev 10:41552d038a69 109 #endif
Zaitsev 10:41552d038a69 110
Zaitsev 10:41552d038a69 111 #ifndef OS_TASKCNT
Zaitsev 10:41552d038a69 112 #define OS_TASKCNT 5
Zaitsev 10:41552d038a69 113 #endif
Zaitsev 10:41552d038a69 114 #ifndef OS_MAINSTKSIZE
Zaitsev 10:41552d038a69 115 #define OS_MAINSTKSIZE 256
Zaitsev 10:41552d038a69 116 #endif
Zaitsev 10:41552d038a69 117
Zaitsev 10:41552d038a69 118 #endif
Zaitsev 10:41552d038a69 119
Zaitsev 10:41552d038a69 120 #endif // MBED_MBED_RTX_H