The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

mbed 2

This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.

Committer:
AnnaBridge
Date:
Wed Jun 21 17:31:38 2017 +0100
Revision:
145:64910690c574
Parent:
143:86740a56073b
Release 145 of the mbed library.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
AnnaBridge 143:86740a56073b 1 /* mbed Microcontroller Library
AnnaBridge 143:86740a56073b 2 * Copyright (c) 2016 ARM Limited
AnnaBridge 143:86740a56073b 3 *
AnnaBridge 143:86740a56073b 4 * Licensed under the Apache License, Version 2.0 (the "License");
AnnaBridge 143:86740a56073b 5 * you may not use this file except in compliance with the License.
AnnaBridge 143:86740a56073b 6 * You may obtain a copy of the License at
AnnaBridge 143:86740a56073b 7 *
AnnaBridge 143:86740a56073b 8 * http://www.apache.org/licenses/LICENSE-2.0
AnnaBridge 143:86740a56073b 9 *
AnnaBridge 143:86740a56073b 10 * Unless required by applicable law or agreed to in writing, software
AnnaBridge 143:86740a56073b 11 * distributed under the License is distributed on an "AS IS" BASIS,
AnnaBridge 143:86740a56073b 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
AnnaBridge 143:86740a56073b 13 * See the License for the specific language governing permissions and
AnnaBridge 143:86740a56073b 14 * limitations under the License.
AnnaBridge 143:86740a56073b 15 */
AnnaBridge 143:86740a56073b 16
AnnaBridge 143:86740a56073b 17 #ifndef MBED_MBED_RTX_H
AnnaBridge 143:86740a56073b 18 #define MBED_MBED_RTX_H
AnnaBridge 143:86740a56073b 19
AnnaBridge 143:86740a56073b 20 #if defined(TARGET_WIZWIKI_W7500)
AnnaBridge 143:86740a56073b 21
AnnaBridge 143:86740a56073b 22 #ifndef INITIAL_SP
AnnaBridge 143:86740a56073b 23 #define INITIAL_SP (0x20004000UL)
AnnaBridge 143:86740a56073b 24 #endif
AnnaBridge 143:86740a56073b 25
AnnaBridge 143:86740a56073b 26 #elif defined(TARGET_WIZWIKI_W7500P)
AnnaBridge 143:86740a56073b 27
AnnaBridge 143:86740a56073b 28 #ifndef INITIAL_SP
AnnaBridge 143:86740a56073b 29 #define INITIAL_SP (0x20004000UL)
AnnaBridge 143:86740a56073b 30 #endif
AnnaBridge 145:64910690c574 31
AnnaBridge 143:86740a56073b 32
AnnaBridge 143:86740a56073b 33 #elif defined(TARGET_WIZWIKI_W7500ECO)
AnnaBridge 143:86740a56073b 34
AnnaBridge 143:86740a56073b 35 #ifndef INITIAL_SP
AnnaBridge 143:86740a56073b 36 #define INITIAL_SP (0x20004000UL)
AnnaBridge 143:86740a56073b 37 #endif
AnnaBridge 143:86740a56073b 38
AnnaBridge 143:86740a56073b 39 #endif //
AnnaBridge 143:86740a56073b 40
AnnaBridge 143:86740a56073b 41 #endif // MBED_MBED_RTX_H