IOTIO

Dependencies:   Nucleo_BLE_API_IOTIO Nucleo_BLE_BlueNRG Nucleo_BLE_DemoApp Nucleo_Sensor_Shield mbed

Dependents:   Nucleo_BLE_Demo_IOTIO

Fork of Nucleo_BLE_Demo by Cortex Challenge Team

Committer:
16038618
Date:
Sat Oct 29 15:11:28 2016 +0000
Revision:
1:4bdfa7d7e8bf
IOTIO

Who changed what in which revision?

UserRevisionLine numberNew contents of line
16038618 1:4bdfa7d7e8bf 1 /* mbed Microcontroller Library
16038618 1:4bdfa7d7e8bf 2 * Copyright (c) 2006-2013 ARM Limited
16038618 1:4bdfa7d7e8bf 3 *
16038618 1:4bdfa7d7e8bf 4 * Licensed under the Apache License, Version 2.0 (the "License");
16038618 1:4bdfa7d7e8bf 5 * you may not use this file except in compliance with the License.
16038618 1:4bdfa7d7e8bf 6 * You may obtain a copy of the License at
16038618 1:4bdfa7d7e8bf 7 *
16038618 1:4bdfa7d7e8bf 8 * http://www.apache.org/licenses/LICENSE-2.0
16038618 1:4bdfa7d7e8bf 9 *
16038618 1:4bdfa7d7e8bf 10 * Unless required by applicable law or agreed to in writing, software
16038618 1:4bdfa7d7e8bf 11 * distributed under the License is distributed on an "AS IS" BASIS,
16038618 1:4bdfa7d7e8bf 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16038618 1:4bdfa7d7e8bf 13 * See the License for the specific language governing permissions and
16038618 1:4bdfa7d7e8bf 14 * limitations under the License.
16038618 1:4bdfa7d7e8bf 15 */
16038618 1:4bdfa7d7e8bf 16 #ifndef MBED_ASSERT_H
16038618 1:4bdfa7d7e8bf 17 #define MBED_ASSERT_H
16038618 1:4bdfa7d7e8bf 18
16038618 1:4bdfa7d7e8bf 19 #ifdef __cplusplus
16038618 1:4bdfa7d7e8bf 20 extern "C" {
16038618 1:4bdfa7d7e8bf 21 #endif
16038618 1:4bdfa7d7e8bf 22
16038618 1:4bdfa7d7e8bf 23 /** Internal mbed assert function which is invoked when MBED_ASSERT macro failes.
16038618 1:4bdfa7d7e8bf 24 * This function is active only if NDEBUG is not defined prior to including this
16038618 1:4bdfa7d7e8bf 25 * assert header file.
16038618 1:4bdfa7d7e8bf 26 * In case of MBED_ASSERT failing condition, the assertation message is printed
16038618 1:4bdfa7d7e8bf 27 * to stderr and mbed_die() is called.
16038618 1:4bdfa7d7e8bf 28 * @param expr Expresion to be checked.
16038618 1:4bdfa7d7e8bf 29 * @param file File where assertation failed.
16038618 1:4bdfa7d7e8bf 30 * @param line Failing assertation line number.
16038618 1:4bdfa7d7e8bf 31 */
16038618 1:4bdfa7d7e8bf 32 void mbed_assert_internal(const char *expr, const char *file, int line);
16038618 1:4bdfa7d7e8bf 33
16038618 1:4bdfa7d7e8bf 34 #ifdef __cplusplus
16038618 1:4bdfa7d7e8bf 35 }
16038618 1:4bdfa7d7e8bf 36 #endif
16038618 1:4bdfa7d7e8bf 37
16038618 1:4bdfa7d7e8bf 38 #ifdef NDEBUG
16038618 1:4bdfa7d7e8bf 39 #define MBED_ASSERT(expr) ((void)0)
16038618 1:4bdfa7d7e8bf 40
16038618 1:4bdfa7d7e8bf 41 #else
16038618 1:4bdfa7d7e8bf 42 #define MBED_ASSERT(expr) \
16038618 1:4bdfa7d7e8bf 43 do { \
16038618 1:4bdfa7d7e8bf 44 if (!(expr)) { \
16038618 1:4bdfa7d7e8bf 45 mbed_assert_internal(#expr, __FILE__, __LINE__); \
16038618 1:4bdfa7d7e8bf 46 } \
16038618 1:4bdfa7d7e8bf 47 } while (0)
16038618 1:4bdfa7d7e8bf 48 #endif
16038618 1:4bdfa7d7e8bf 49
16038618 1:4bdfa7d7e8bf 50 #endif