mbed library sources with internal temperature sensor for nucleo f401
common/exit.c@0:7e2bd16f80af, 2015-01-17 (annotated)
- Committer:
- elessair
- Date:
- Sat Jan 17 18:03:58 2015 +0000
- Revision:
- 0:7e2bd16f80af
nucleo f401re internal temperature added
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
elessair | 0:7e2bd16f80af | 1 | /* mbed Microcontroller Library |
elessair | 0:7e2bd16f80af | 2 | * Copyright (c) 2006-2013 ARM Limited |
elessair | 0:7e2bd16f80af | 3 | * |
elessair | 0:7e2bd16f80af | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
elessair | 0:7e2bd16f80af | 5 | * you may not use this file except in compliance with the License. |
elessair | 0:7e2bd16f80af | 6 | * You may obtain a copy of the License at |
elessair | 0:7e2bd16f80af | 7 | * |
elessair | 0:7e2bd16f80af | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
elessair | 0:7e2bd16f80af | 9 | * |
elessair | 0:7e2bd16f80af | 10 | * Unless required by applicable law or agreed to in writing, software |
elessair | 0:7e2bd16f80af | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
elessair | 0:7e2bd16f80af | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
elessair | 0:7e2bd16f80af | 13 | * See the License for the specific language governing permissions and |
elessair | 0:7e2bd16f80af | 14 | * limitations under the License. |
elessair | 0:7e2bd16f80af | 15 | */ |
elessair | 0:7e2bd16f80af | 16 | #include "semihost_api.h" |
elessair | 0:7e2bd16f80af | 17 | #include "mbed_interface.h" |
elessair | 0:7e2bd16f80af | 18 | #if DEVICE_STDIO_MESSAGES |
elessair | 0:7e2bd16f80af | 19 | #include <stdio.h> |
elessair | 0:7e2bd16f80af | 20 | #endif |
elessair | 0:7e2bd16f80af | 21 | |
elessair | 0:7e2bd16f80af | 22 | #ifdef TOOLCHAIN_GCC_CW |
elessair | 0:7e2bd16f80af | 23 | // TODO: Ideally, we would like to define directly "_ExitProcess" |
elessair | 0:7e2bd16f80af | 24 | void mbed_exit(int return_code) { |
elessair | 0:7e2bd16f80af | 25 | #elif defined TOOLCHAIN_GCC_ARM |
elessair | 0:7e2bd16f80af | 26 | void _exit(int return_code) { |
elessair | 0:7e2bd16f80af | 27 | #else |
elessair | 0:7e2bd16f80af | 28 | void exit(int return_code) { |
elessair | 0:7e2bd16f80af | 29 | #endif |
elessair | 0:7e2bd16f80af | 30 | |
elessair | 0:7e2bd16f80af | 31 | #if DEVICE_STDIO_MESSAGES |
elessair | 0:7e2bd16f80af | 32 | fflush(stdout); |
elessair | 0:7e2bd16f80af | 33 | fflush(stderr); |
elessair | 0:7e2bd16f80af | 34 | #endif |
elessair | 0:7e2bd16f80af | 35 | |
elessair | 0:7e2bd16f80af | 36 | #if DEVICE_SEMIHOST |
elessair | 0:7e2bd16f80af | 37 | if (mbed_interface_connected()) { |
elessair | 0:7e2bd16f80af | 38 | semihost_exit(); |
elessair | 0:7e2bd16f80af | 39 | } |
elessair | 0:7e2bd16f80af | 40 | #endif |
elessair | 0:7e2bd16f80af | 41 | if (return_code) { |
elessair | 0:7e2bd16f80af | 42 | mbed_die(); |
elessair | 0:7e2bd16f80af | 43 | } |
elessair | 0:7e2bd16f80af | 44 | |
elessair | 0:7e2bd16f80af | 45 | while (1); |
elessair | 0:7e2bd16f80af | 46 | } |