FRDM-K64F, Avnet M14A2A, Grove Shield, to create smart home system. In use with AT&Ts M2x & Flow.

Dependencies:   mbed FXOS8700CQ MODSERIAL

Committer:
jwhammel
Date:
Mon Apr 29 04:24:38 2019 +0000
Revision:
85:0cf65ceb4492
Parent:
84:fc8c9b39723a
We have added an alarm trigger that gets sent to AT&T Flow.

Who changed what in which revision?

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