mbed library sources. Supersedes mbed-src.

Dependents:   Nucleo_Hello_Encoder BLE_iBeaconScan AM1805_DEMO DISCO-F429ZI_ExportTemplate1 ... more

Committer:
Anna Bridge
Date:
Fri Jun 22 16:45:37 2018 +0100
Revision:
186:707f6e361f3e
Parent:
178:79309dc6340a
Child:
187:0387e8f68319
mbed-dev library. Release version 162

Who changed what in which revision?

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