Backup 1

Committer:
borlanic
Date:
Tue Apr 24 11:45:18 2018 +0000
Revision:
0:02dd72d1d465
BaBoRo_test2 - backup 1

Who changed what in which revision?

UserRevisionLine numberNew contents of line
borlanic 0:02dd72d1d465 1
borlanic 0:02dd72d1d465 2 /** \addtogroup platform */
borlanic 0:02dd72d1d465 3 /** @{*/
borlanic 0:02dd72d1d465 4 /**
borlanic 0:02dd72d1d465 5 * \defgroup platform_debug Debug functions
borlanic 0:02dd72d1d465 6 * @{
borlanic 0:02dd72d1d465 7 */
borlanic 0:02dd72d1d465 8
borlanic 0:02dd72d1d465 9 /* mbed Microcontroller Library
borlanic 0:02dd72d1d465 10 * Copyright (c) 2006-2013 ARM Limited
borlanic 0:02dd72d1d465 11 *
borlanic 0:02dd72d1d465 12 * Licensed under the Apache License, Version 2.0 (the "License");
borlanic 0:02dd72d1d465 13 * you may not use this file except in compliance with the License.
borlanic 0:02dd72d1d465 14 * You may obtain a copy of the License at
borlanic 0:02dd72d1d465 15 *
borlanic 0:02dd72d1d465 16 * http://www.apache.org/licenses/LICENSE-2.0
borlanic 0:02dd72d1d465 17 *
borlanic 0:02dd72d1d465 18 * Unless required by applicable law or agreed to in writing, software
borlanic 0:02dd72d1d465 19 * distributed under the License is distributed on an "AS IS" BASIS,
borlanic 0:02dd72d1d465 20 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
borlanic 0:02dd72d1d465 21 * See the License for the specific language governing permissions and
borlanic 0:02dd72d1d465 22 * limitations under the License.
borlanic 0:02dd72d1d465 23 */
borlanic 0:02dd72d1d465 24 #ifndef MBED_DEBUG_H
borlanic 0:02dd72d1d465 25 #define MBED_DEBUG_H
borlanic 0:02dd72d1d465 26 #if DEVICE_STDIO_MESSAGES
borlanic 0:02dd72d1d465 27 #include <stdio.h>
borlanic 0:02dd72d1d465 28 #include <stdarg.h>
borlanic 0:02dd72d1d465 29 #endif
borlanic 0:02dd72d1d465 30
borlanic 0:02dd72d1d465 31 #ifdef __cplusplus
borlanic 0:02dd72d1d465 32 extern "C" {
borlanic 0:02dd72d1d465 33 #endif
borlanic 0:02dd72d1d465 34
borlanic 0:02dd72d1d465 35
borlanic 0:02dd72d1d465 36 /** Output a debug message
borlanic 0:02dd72d1d465 37 *
borlanic 0:02dd72d1d465 38 * @param format printf-style format string, followed by variables
borlanic 0:02dd72d1d465 39 */
borlanic 0:02dd72d1d465 40 static inline void debug(const char *format, ...) {
borlanic 0:02dd72d1d465 41 #if DEVICE_STDIO_MESSAGES && !defined(NDEBUG)
borlanic 0:02dd72d1d465 42 va_list args;
borlanic 0:02dd72d1d465 43 va_start(args, format);
borlanic 0:02dd72d1d465 44 vfprintf(stderr, format, args);
borlanic 0:02dd72d1d465 45 va_end(args);
borlanic 0:02dd72d1d465 46 #endif
borlanic 0:02dd72d1d465 47 }
borlanic 0:02dd72d1d465 48
borlanic 0:02dd72d1d465 49
borlanic 0:02dd72d1d465 50 /** Conditionally output a debug message
borlanic 0:02dd72d1d465 51 *
borlanic 0:02dd72d1d465 52 * NOTE: If the condition is constant false (== 0) and the compiler optimization
borlanic 0:02dd72d1d465 53 * level is greater than 0, then the whole function will be compiled away.
borlanic 0:02dd72d1d465 54 *
borlanic 0:02dd72d1d465 55 * @param condition output only if condition is true (!= 0)
borlanic 0:02dd72d1d465 56 * @param format printf-style format string, followed by variables
borlanic 0:02dd72d1d465 57 */
borlanic 0:02dd72d1d465 58 static inline void debug_if(int condition, const char *format, ...) {
borlanic 0:02dd72d1d465 59 #if DEVICE_STDIO_MESSAGES && !defined(NDEBUG)
borlanic 0:02dd72d1d465 60 if (condition) {
borlanic 0:02dd72d1d465 61 va_list args;
borlanic 0:02dd72d1d465 62 va_start(args, format);
borlanic 0:02dd72d1d465 63 vfprintf(stderr, format, args);
borlanic 0:02dd72d1d465 64 va_end(args);
borlanic 0:02dd72d1d465 65 }
borlanic 0:02dd72d1d465 66 #endif
borlanic 0:02dd72d1d465 67 }
borlanic 0:02dd72d1d465 68
borlanic 0:02dd72d1d465 69
borlanic 0:02dd72d1d465 70 #ifdef __cplusplus
borlanic 0:02dd72d1d465 71 }
borlanic 0:02dd72d1d465 72 #endif
borlanic 0:02dd72d1d465 73
borlanic 0:02dd72d1d465 74 #endif
borlanic 0:02dd72d1d465 75
borlanic 0:02dd72d1d465 76 /**@}*/
borlanic 0:02dd72d1d465 77
borlanic 0:02dd72d1d465 78 /**@}*/
borlanic 0:02dd72d1d465 79