mbed library sources with internal temperature sensor for nucleo f401
api/mbed_error.h@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 | #ifndef MBED_ERROR_H |
elessair | 0:7e2bd16f80af | 17 | #define MBED_ERROR_H |
elessair | 0:7e2bd16f80af | 18 | |
elessair | 0:7e2bd16f80af | 19 | /** To generate a fatal compile-time error, you can use the pre-processor #error directive. |
elessair | 0:7e2bd16f80af | 20 | * |
elessair | 0:7e2bd16f80af | 21 | * @code |
elessair | 0:7e2bd16f80af | 22 | * #error "That shouldn't have happened!" |
elessair | 0:7e2bd16f80af | 23 | * @endcode |
elessair | 0:7e2bd16f80af | 24 | * |
elessair | 0:7e2bd16f80af | 25 | * If the compiler evaluates this line, it will report the error and stop the compile. |
elessair | 0:7e2bd16f80af | 26 | * |
elessair | 0:7e2bd16f80af | 27 | * For example, you could use this to check some user-defined compile-time variables: |
elessair | 0:7e2bd16f80af | 28 | * |
elessair | 0:7e2bd16f80af | 29 | * @code |
elessair | 0:7e2bd16f80af | 30 | * #define NUM_PORTS 7 |
elessair | 0:7e2bd16f80af | 31 | * #if (NUM_PORTS > 4) |
elessair | 0:7e2bd16f80af | 32 | * #error "NUM_PORTS must be less than 4" |
elessair | 0:7e2bd16f80af | 33 | * #endif |
elessair | 0:7e2bd16f80af | 34 | * @endcode |
elessair | 0:7e2bd16f80af | 35 | * |
elessair | 0:7e2bd16f80af | 36 | * Reporting Run-Time Errors: |
elessair | 0:7e2bd16f80af | 37 | * To generate a fatal run-time error, you can use the mbed error() function. |
elessair | 0:7e2bd16f80af | 38 | * |
elessair | 0:7e2bd16f80af | 39 | * @code |
elessair | 0:7e2bd16f80af | 40 | * error("That shouldn't have happened!"); |
elessair | 0:7e2bd16f80af | 41 | * @endcode |
elessair | 0:7e2bd16f80af | 42 | * |
elessair | 0:7e2bd16f80af | 43 | * If the mbed running the program executes this function, it will print the |
elessair | 0:7e2bd16f80af | 44 | * message via the USB serial port, and then die with the blue lights of death! |
elessair | 0:7e2bd16f80af | 45 | * |
elessair | 0:7e2bd16f80af | 46 | * The message can use printf-style formatting, so you can report variables in the |
elessair | 0:7e2bd16f80af | 47 | * message too. For example, you could use this to check a run-time condition: |
elessair | 0:7e2bd16f80af | 48 | * |
elessair | 0:7e2bd16f80af | 49 | * @code |
elessair | 0:7e2bd16f80af | 50 | * if(x >= 5) { |
elessair | 0:7e2bd16f80af | 51 | * error("expected x to be less than 5, but got %d", x); |
elessair | 0:7e2bd16f80af | 52 | * } |
elessair | 0:7e2bd16f80af | 53 | * #endcode |
elessair | 0:7e2bd16f80af | 54 | */ |
elessair | 0:7e2bd16f80af | 55 | |
elessair | 0:7e2bd16f80af | 56 | #ifdef __cplusplus |
elessair | 0:7e2bd16f80af | 57 | extern "C" { |
elessair | 0:7e2bd16f80af | 58 | #endif |
elessair | 0:7e2bd16f80af | 59 | |
elessair | 0:7e2bd16f80af | 60 | void error(const char* format, ...); |
elessair | 0:7e2bd16f80af | 61 | |
elessair | 0:7e2bd16f80af | 62 | #ifdef __cplusplus |
elessair | 0:7e2bd16f80af | 63 | } |
elessair | 0:7e2bd16f80af | 64 | #endif |
elessair | 0:7e2bd16f80af | 65 | |
elessair | 0:7e2bd16f80af | 66 | #endif |