Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbed-dev by
platform/mbed_application.h@160:d5399cc887bb, 2017-03-14 (annotated)
- Committer:
- <>
- Date:
- Tue Mar 14 16:40:56 2017 +0000
- Revision:
- 160:d5399cc887bb
- Child:
- 167:e84263d55307
This updates the lib to the mbed lib v138
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
<> | 160:d5399cc887bb | 1 | |
<> | 160:d5399cc887bb | 2 | /** \addtogroup platform */ |
<> | 160:d5399cc887bb | 3 | /** @{*/ |
<> | 160:d5399cc887bb | 4 | /* mbed Microcontroller Library |
<> | 160:d5399cc887bb | 5 | * Copyright (c) 2017-2017 ARM Limited |
<> | 160:d5399cc887bb | 6 | * |
<> | 160:d5399cc887bb | 7 | * Licensed under the Apache License, Version 2.0 (the "License"); |
<> | 160:d5399cc887bb | 8 | * you may not use this file except in compliance with the License. |
<> | 160:d5399cc887bb | 9 | * You may obtain a copy of the License at |
<> | 160:d5399cc887bb | 10 | * |
<> | 160:d5399cc887bb | 11 | * http://www.apache.org/licenses/LICENSE-2.0 |
<> | 160:d5399cc887bb | 12 | * |
<> | 160:d5399cc887bb | 13 | * Unless required by applicable law or agreed to in writing, software |
<> | 160:d5399cc887bb | 14 | * distributed under the License is distributed on an "AS IS" BASIS, |
<> | 160:d5399cc887bb | 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
<> | 160:d5399cc887bb | 16 | * See the License for the specific language governing permissions and |
<> | 160:d5399cc887bb | 17 | * limitations under the License. |
<> | 160:d5399cc887bb | 18 | */ |
<> | 160:d5399cc887bb | 19 | #ifndef MBED_APPLICATION_H |
<> | 160:d5399cc887bb | 20 | #define MBED_APPLICATION_H |
<> | 160:d5399cc887bb | 21 | |
<> | 160:d5399cc887bb | 22 | #include<stdint.h> |
<> | 160:d5399cc887bb | 23 | |
<> | 160:d5399cc887bb | 24 | #define MBED_APPLICATION_SUPPORT (defined(__CORTEX_M3) || defined(__CORTEX_M4) || defined(__CORTEX_M7)) |
<> | 160:d5399cc887bb | 25 | #if MBED_APPLICATION_SUPPORT |
<> | 160:d5399cc887bb | 26 | #ifdef __cplusplus |
<> | 160:d5399cc887bb | 27 | extern "C" { |
<> | 160:d5399cc887bb | 28 | #endif |
<> | 160:d5399cc887bb | 29 | |
<> | 160:d5399cc887bb | 30 | /** |
<> | 160:d5399cc887bb | 31 | * Start the application at the given address. This function does |
<> | 160:d5399cc887bb | 32 | * not return. It is the applications responsibility for flushing to |
<> | 160:d5399cc887bb | 33 | * or powering down external components such as filesystems or |
<> | 160:d5399cc887bb | 34 | * socket connections before calling this function. For Cortex-M |
<> | 160:d5399cc887bb | 35 | * devices this function powers down generic system components such as |
<> | 160:d5399cc887bb | 36 | * the NVIC and set the vector table to that of the new image followed |
<> | 160:d5399cc887bb | 37 | * by jumping to the reset handler of the new image. |
<> | 160:d5399cc887bb | 38 | * |
<> | 160:d5399cc887bb | 39 | * @param address Starting address of next application to run |
<> | 160:d5399cc887bb | 40 | */ |
<> | 160:d5399cc887bb | 41 | void mbed_start_application(uintptr_t address); |
<> | 160:d5399cc887bb | 42 | |
<> | 160:d5399cc887bb | 43 | #ifdef __cplusplus |
<> | 160:d5399cc887bb | 44 | } |
<> | 160:d5399cc887bb | 45 | #endif |
<> | 160:d5399cc887bb | 46 | #endif |
<> | 160:d5399cc887bb | 47 | |
<> | 160:d5399cc887bb | 48 | #endif |
<> | 160:d5399cc887bb | 49 | |
<> | 160:d5399cc887bb | 50 | /** @}*/ |