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:
Thu Aug 03 13:37:00 2017 +0100
Revision:
148:fd96258d940d
Parent:
145:64910690c574
Release 148 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
Kojto 148:fd96258d940d 24 #if defined(__CORTEX_M3) || defined(__CORTEX_M4) || defined(__CORTEX_M7)
Kojto 148:fd96258d940d 25 #define MBED_APPLICATION_SUPPORT 1
Kojto 148:fd96258d940d 26 #else
Kojto 148:fd96258d940d 27 #define MBED_APPLICATION_SUPPORT 0
Kojto 148:fd96258d940d 28 #endif
Kojto 148:fd96258d940d 29
<> 138:093f2bd7b9eb 30 #if MBED_APPLICATION_SUPPORT
<> 138:093f2bd7b9eb 31 #ifdef __cplusplus
<> 138:093f2bd7b9eb 32 extern "C" {
<> 138:093f2bd7b9eb 33 #endif
<> 138:093f2bd7b9eb 34
<> 138:093f2bd7b9eb 35 /**
<> 138:093f2bd7b9eb 36 * Start the application at the given address. This function does
<> 138:093f2bd7b9eb 37 * not return. It is the applications responsibility for flushing to
<> 138:093f2bd7b9eb 38 * or powering down external components such as filesystems or
<> 138:093f2bd7b9eb 39 * socket connections before calling this function. For Cortex-M
<> 138:093f2bd7b9eb 40 * devices this function powers down generic system components such as
<> 138:093f2bd7b9eb 41 * the NVIC and set the vector table to that of the new image followed
<> 138:093f2bd7b9eb 42 * by jumping to the reset handler of the new image.
<> 138:093f2bd7b9eb 43 *
<> 138:093f2bd7b9eb 44 * @param address Starting address of next application to run
<> 138:093f2bd7b9eb 45 */
<> 138:093f2bd7b9eb 46 void mbed_start_application(uintptr_t address);
<> 138:093f2bd7b9eb 47
<> 138:093f2bd7b9eb 48 #ifdef __cplusplus
<> 138:093f2bd7b9eb 49 }
<> 138:093f2bd7b9eb 50 #endif
<> 138:093f2bd7b9eb 51 #endif
<> 138:093f2bd7b9eb 52
<> 138:093f2bd7b9eb 53 #endif
<> 138:093f2bd7b9eb 54
<> 138:093f2bd7b9eb 55 /** @}*/