Fork of the official mbed C/C SDK provides the software platform and libraries to build your applications for RenBED.
Dependents: 1-RenBuggyTimed RenBED_RGB RenBED_RGB_PWM RenBED_RGB
Fork of mbed by
TARGET_NRF51822/softdevice_assert.h
- Committer:
- emilmont
- Date:
- 2014-02-21
- Revision:
- 80:8e73be2a2ac1
File content as of revision 80:8e73be2a2ac1:
/* * Copyright (c) 2012 Nordic Semiconductor. All Rights Reserved. * * The information contained herein is confidential property of Nordic Semiconductor. The use, * copying, transfer or disclosure of such information is prohibited except by express written * agreement with Nordic Semiconductor. * */ /** @brief Utilities for verifying program logic */ #ifndef SOFTDEVICE_ASSERT_H_ #define SOFTDEVICE_ASSERT_H_ #include <stdint.h> /** @brief This function handles assertions. * * * @note * This function is called when an assertion has triggered. * * * @param line_num The line number where the assertion is called * @param file_name Pointer to the file name */ void assert_softdevice_callback(uint16_t line_num, const uint8_t *file_name); /*lint -emacro(506, ASSERT) */ /* Suppress "Constant value Boolean */ /*lint -emacro(774, ASSERT) */ /* Suppress "Boolean within 'if' always evaluates to True" */ \ /** @brief Check intended for production code * * Check passes if "expr" evaluates to true. */ #define ASSERT(expr) \ if (expr) \ { \ } \ else \ { \ assert_softdevice_callback((uint16_t)__LINE__, (uint8_t *)__FILE__); \ /*lint -unreachable */ \ } #endif /* SOFTDEVICE_ASSERT_H_ */