test

Dependencies:   mbed Watchdog

Dependents:   STM32-MC_node

Committer:
ommpy
Date:
Mon Jul 06 17:18:59 2020 +0530
Revision:
0:d383e2dee0f7
first commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ommpy 0:d383e2dee0f7 1 /* mbed Microcontroller Library
ommpy 0:d383e2dee0f7 2 * Copyright (c) 2006-2013 ARM Limited
ommpy 0:d383e2dee0f7 3 *
ommpy 0:d383e2dee0f7 4 * Licensed under the Apache License, Version 2.0 (the "License");
ommpy 0:d383e2dee0f7 5 * you may not use this file except in compliance with the License.
ommpy 0:d383e2dee0f7 6 * You may obtain a copy of the License at
ommpy 0:d383e2dee0f7 7 *
ommpy 0:d383e2dee0f7 8 * http://www.apache.org/licenses/LICENSE-2.0
ommpy 0:d383e2dee0f7 9 *
ommpy 0:d383e2dee0f7 10 * Unless required by applicable law or agreed to in writing, software
ommpy 0:d383e2dee0f7 11 * distributed under the License is distributed on an "AS IS" BASIS,
ommpy 0:d383e2dee0f7 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
ommpy 0:d383e2dee0f7 13 * See the License for the specific language governing permissions and
ommpy 0:d383e2dee0f7 14 * limitations under the License.
ommpy 0:d383e2dee0f7 15 */
ommpy 0:d383e2dee0f7 16 #ifndef MBED_ERROR_H
ommpy 0:d383e2dee0f7 17 #define MBED_ERROR_H
ommpy 0:d383e2dee0f7 18
ommpy 0:d383e2dee0f7 19 /** To generate a fatal compile-time error, you can use the pre-processor #error directive.
ommpy 0:d383e2dee0f7 20 *
ommpy 0:d383e2dee0f7 21 * @code
ommpy 0:d383e2dee0f7 22 * #error "That shouldn't have happened!"
ommpy 0:d383e2dee0f7 23 * @endcode
ommpy 0:d383e2dee0f7 24 *
ommpy 0:d383e2dee0f7 25 * If the compiler evaluates this line, it will report the error and stop the compile.
ommpy 0:d383e2dee0f7 26 *
ommpy 0:d383e2dee0f7 27 * For example, you could use this to check some user-defined compile-time variables:
ommpy 0:d383e2dee0f7 28 *
ommpy 0:d383e2dee0f7 29 * @code
ommpy 0:d383e2dee0f7 30 * #define NUM_PORTS 7
ommpy 0:d383e2dee0f7 31 * #if (NUM_PORTS > 4)
ommpy 0:d383e2dee0f7 32 * #error "NUM_PORTS must be less than 4"
ommpy 0:d383e2dee0f7 33 * #endif
ommpy 0:d383e2dee0f7 34 * @endcode
ommpy 0:d383e2dee0f7 35 *
ommpy 0:d383e2dee0f7 36 * Reporting Run-Time Errors:
ommpy 0:d383e2dee0f7 37 * To generate a fatal run-time error, you can use the mbed error() function.
ommpy 0:d383e2dee0f7 38 *
ommpy 0:d383e2dee0f7 39 * @code
ommpy 0:d383e2dee0f7 40 * error("That shouldn't have happened!");
ommpy 0:d383e2dee0f7 41 * @endcode
ommpy 0:d383e2dee0f7 42 *
ommpy 0:d383e2dee0f7 43 * If the mbed running the program executes this function, it will print the
ommpy 0:d383e2dee0f7 44 * message via the USB serial port, and then die with the blue lights of death!
ommpy 0:d383e2dee0f7 45 *
ommpy 0:d383e2dee0f7 46 * The message can use printf-style formatting, so you can report variables in the
ommpy 0:d383e2dee0f7 47 * message too. For example, you could use this to check a run-time condition:
ommpy 0:d383e2dee0f7 48 *
ommpy 0:d383e2dee0f7 49 * @code
ommpy 0:d383e2dee0f7 50 * if(x >= 5) {
ommpy 0:d383e2dee0f7 51 * error("expected x to be less than 5, but got %d", x);
ommpy 0:d383e2dee0f7 52 * }
ommpy 0:d383e2dee0f7 53 * #endcode
ommpy 0:d383e2dee0f7 54 */
ommpy 0:d383e2dee0f7 55
ommpy 0:d383e2dee0f7 56 #ifdef __cplusplus
ommpy 0:d383e2dee0f7 57 extern "C" {
ommpy 0:d383e2dee0f7 58 #endif
ommpy 0:d383e2dee0f7 59
ommpy 0:d383e2dee0f7 60 void error(const char* format, ...);
ommpy 0:d383e2dee0f7 61
ommpy 0:d383e2dee0f7 62 #ifdef __cplusplus
ommpy 0:d383e2dee0f7 63 }
ommpy 0:d383e2dee0f7 64 #endif
ommpy 0:d383e2dee0f7 65
ommpy 0:d383e2dee0f7 66 #endif