BLE Temperature Service Mobile and Ubiquitous Computing Module Birkbeck College

Dependencies:   DS1820

Committer:
gkroussos
Date:
Sun Mar 08 19:42:20 2015 +0000
Revision:
0:dd0fea342ad2
BLE Temperature Service ; Mobile and Ubiquitous Computing Module; Birkbeck College

Who changed what in which revision?

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