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:
Kojto
Date:
Wed Jul 19 16:46:19 2017 +0100
Revision:
147:a97add6d7e64
Parent:
145:64910690c574
Child:
148:fd96258d940d
Release 147 of the mbed library.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
<> 138:093f2bd7b9eb 1
<> 138:093f2bd7b9eb 2 /** \addtogroup platform */
<> 138:093f2bd7b9eb 3 /** @{*/
<> 138:093f2bd7b9eb 4 /* mbed Microcontroller Library
<> 138:093f2bd7b9eb 5 * Copyright (c) 2017-2017 ARM Limited
<> 138:093f2bd7b9eb 6 *
<> 138:093f2bd7b9eb 7 * Licensed under the Apache License, Version 2.0 (the "License");
<> 138:093f2bd7b9eb 8 * you may not use this file except in compliance with the License.
<> 138:093f2bd7b9eb 9 * You may obtain a copy of the License at
<> 138:093f2bd7b9eb 10 *
<> 138:093f2bd7b9eb 11 * http://www.apache.org/licenses/LICENSE-2.0
<> 138:093f2bd7b9eb 12 *
<> 138:093f2bd7b9eb 13 * Unless required by applicable law or agreed to in writing, software
<> 138:093f2bd7b9eb 14 * distributed under the License is distributed on an "AS IS" BASIS,
<> 138:093f2bd7b9eb 15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
<> 138:093f2bd7b9eb 16 * See the License for the specific language governing permissions and
<> 138:093f2bd7b9eb 17 * limitations under the License.
<> 138:093f2bd7b9eb 18 */
<> 138:093f2bd7b9eb 19 #ifndef MBED_APPLICATION_H
<> 138:093f2bd7b9eb 20 #define MBED_APPLICATION_H
<> 138:093f2bd7b9eb 21
<> 138:093f2bd7b9eb 22 #include<stdint.h>
<> 138:093f2bd7b9eb 23
AnnaBridge 145:64910690c574 24 #define MBED_APPLICATION_SUPPORT defined(__CORTEX_M3) || defined(__CORTEX_M4) || defined(__CORTEX_M7)
<> 138:093f2bd7b9eb 25 #if MBED_APPLICATION_SUPPORT
<> 138:093f2bd7b9eb 26 #ifdef __cplusplus
<> 138:093f2bd7b9eb 27 extern "C" {
<> 138:093f2bd7b9eb 28 #endif
<> 138:093f2bd7b9eb 29
<> 138:093f2bd7b9eb 30 /**
<> 138:093f2bd7b9eb 31 * Start the application at the given address. This function does
<> 138:093f2bd7b9eb 32 * not return. It is the applications responsibility for flushing to
<> 138:093f2bd7b9eb 33 * or powering down external components such as filesystems or
<> 138:093f2bd7b9eb 34 * socket connections before calling this function. For Cortex-M
<> 138:093f2bd7b9eb 35 * devices this function powers down generic system components such as
<> 138:093f2bd7b9eb 36 * the NVIC and set the vector table to that of the new image followed
<> 138:093f2bd7b9eb 37 * by jumping to the reset handler of the new image.
<> 138:093f2bd7b9eb 38 *
<> 138:093f2bd7b9eb 39 * @param address Starting address of next application to run
<> 138:093f2bd7b9eb 40 */
<> 138:093f2bd7b9eb 41 void mbed_start_application(uintptr_t address);
<> 138:093f2bd7b9eb 42
<> 138:093f2bd7b9eb 43 #ifdef __cplusplus
<> 138:093f2bd7b9eb 44 }
<> 138:093f2bd7b9eb 45 #endif
<> 138:093f2bd7b9eb 46 #endif
<> 138:093f2bd7b9eb 47
<> 138:093f2bd7b9eb 48 #endif
<> 138:093f2bd7b9eb 49
<> 138:093f2bd7b9eb 50 /** @}*/