USB Serial application
Fork of USBSerial_HelloWorld by
mbed-dev/targets/TARGET_Maxim/mbed_rtx.h@10:41552d038a69, 2017-01-10 (annotated)
- Committer:
- Zaitsev
- Date:
- Tue Jan 10 20:42:26 2017 +0000
- Revision:
- 10:41552d038a69
USB Serial bi-directional bridge
Who changed what in which revision?
User | Revision | Line number | New 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_MAX32600) |
Zaitsev | 10:41552d038a69 | 21 | |
Zaitsev | 10:41552d038a69 | 22 | #ifndef INITIAL_SP |
Zaitsev | 10:41552d038a69 | 23 | #define INITIAL_SP (0x20008000UL) |
Zaitsev | 10:41552d038a69 | 24 | #endif |
Zaitsev | 10:41552d038a69 | 25 | #ifndef OS_TASKCNT |
Zaitsev | 10:41552d038a69 | 26 | #define OS_TASKCNT 14 |
Zaitsev | 10:41552d038a69 | 27 | #endif |
Zaitsev | 10:41552d038a69 | 28 | #ifndef OS_MAINSTKSIZE |
Zaitsev | 10:41552d038a69 | 29 | #define OS_MAINSTKSIZE 256 |
Zaitsev | 10:41552d038a69 | 30 | #endif |
Zaitsev | 10:41552d038a69 | 31 | #ifndef OS_CLOCK |
Zaitsev | 10:41552d038a69 | 32 | #define OS_CLOCK 24000000 |
Zaitsev | 10:41552d038a69 | 33 | #endif |
Zaitsev | 10:41552d038a69 | 34 | |
Zaitsev | 10:41552d038a69 | 35 | #elif defined(TARGET_MAX32610) |
Zaitsev | 10:41552d038a69 | 36 | |
Zaitsev | 10:41552d038a69 | 37 | #ifndef INITIAL_SP |
Zaitsev | 10:41552d038a69 | 38 | #define INITIAL_SP (0x20008000UL) |
Zaitsev | 10:41552d038a69 | 39 | #endif |
Zaitsev | 10:41552d038a69 | 40 | #ifndef OS_TASKCNT |
Zaitsev | 10:41552d038a69 | 41 | #define OS_TASKCNT 14 |
Zaitsev | 10:41552d038a69 | 42 | #endif |
Zaitsev | 10:41552d038a69 | 43 | #ifndef OS_MAINSTKSIZE |
Zaitsev | 10:41552d038a69 | 44 | #define OS_MAINSTKSIZE 256 |
Zaitsev | 10:41552d038a69 | 45 | #endif |
Zaitsev | 10:41552d038a69 | 46 | #ifndef OS_CLOCK |
Zaitsev | 10:41552d038a69 | 47 | #define OS_CLOCK 24000000 |
Zaitsev | 10:41552d038a69 | 48 | #endif |
Zaitsev | 10:41552d038a69 | 49 | |
Zaitsev | 10:41552d038a69 | 50 | #elif defined(TARGET_MAX32620) |
Zaitsev | 10:41552d038a69 | 51 | |
Zaitsev | 10:41552d038a69 | 52 | #ifndef INITIAL_SP |
Zaitsev | 10:41552d038a69 | 53 | #define INITIAL_SP (0x20040000UL) |
Zaitsev | 10:41552d038a69 | 54 | #endif |
Zaitsev | 10:41552d038a69 | 55 | #ifndef OS_TASKCNT |
Zaitsev | 10:41552d038a69 | 56 | #define OS_TASKCNT 14 |
Zaitsev | 10:41552d038a69 | 57 | #endif |
Zaitsev | 10:41552d038a69 | 58 | #ifndef OS_MAINSTKSIZE |
Zaitsev | 10:41552d038a69 | 59 | #define OS_MAINSTKSIZE 256 |
Zaitsev | 10:41552d038a69 | 60 | #endif |
Zaitsev | 10:41552d038a69 | 61 | #ifndef OS_CLOCK |
Zaitsev | 10:41552d038a69 | 62 | #define OS_CLOCK 48000000 |
Zaitsev | 10:41552d038a69 | 63 | #endif |
Zaitsev | 10:41552d038a69 | 64 | |
Zaitsev | 10:41552d038a69 | 65 | #elif defined(TARGET_MAX32625) |
Zaitsev | 10:41552d038a69 | 66 | |
Zaitsev | 10:41552d038a69 | 67 | #ifndef INITIAL_SP |
Zaitsev | 10:41552d038a69 | 68 | #define INITIAL_SP (0x20028000UL) |
Zaitsev | 10:41552d038a69 | 69 | #endif |
Zaitsev | 10:41552d038a69 | 70 | #ifndef OS_TASKCNT |
Zaitsev | 10:41552d038a69 | 71 | #define OS_TASKCNT 14 |
Zaitsev | 10:41552d038a69 | 72 | #endif |
Zaitsev | 10:41552d038a69 | 73 | #ifndef OS_MAINSTKSIZE |
Zaitsev | 10:41552d038a69 | 74 | #define OS_MAINSTKSIZE 256 |
Zaitsev | 10:41552d038a69 | 75 | #endif |
Zaitsev | 10:41552d038a69 | 76 | #ifndef OS_CLOCK |
Zaitsev | 10:41552d038a69 | 77 | #define OS_CLOCK 96000000 |
Zaitsev | 10:41552d038a69 | 78 | #endif |
Zaitsev | 10:41552d038a69 | 79 | |
Zaitsev | 10:41552d038a69 | 80 | #endif |
Zaitsev | 10:41552d038a69 | 81 | |
Zaitsev | 10:41552d038a69 | 82 | #endif // MBED_MBED_RTX_H |