test

Fork of nRF51822 by Nordic Semiconductor

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers app_error.c Source File

app_error.c

Go to the documentation of this file.
00001 /*
00002  * Copyright (c) Nordic Semiconductor ASA
00003  * All rights reserved.
00004  *
00005  * Redistribution and use in source and binary forms, with or without modification,
00006  * are permitted provided that the following conditions are met:
00007  *
00008  *   1. Redistributions of source code must retain the above copyright notice, this
00009  *   list of conditions and the following disclaimer.
00010  *
00011  *   2. Redistributions in binary form must reproduce the above copyright notice, this
00012  *   list of conditions and the following disclaimer in the documentation and/or
00013  *   other materials provided with the distribution.
00014  *
00015  *   3. Neither the name of Nordic Semiconductor ASA nor the names of other
00016  *   contributors to this software may be used to endorse or promote products
00017  *   derived from this software without specific prior written permission.
00018  *
00019  *
00020  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
00021  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
00022  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
00023  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
00024  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
00025  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
00026  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
00027  * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
00028  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
00029  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
00030  *
00031  */
00032 
00033 /** @file
00034  *
00035  * @defgroup app_error Common application error handler
00036  * @{
00037  * @ingroup app_common
00038  *
00039  * @brief Common application error handler.
00040  */
00041 
00042 #include "nrf.h"
00043 #include "app_error.h"
00044 #include "compiler_abstraction.h"
00045 #include "nordic_common.h"
00046 #ifdef DEBUG
00047 
00048 /* global error variables - in order to prevent removal by optimizers */
00049 uint32_t m_error_code;
00050 uint32_t m_line_num;
00051 const uint8_t * m_p_file_name;
00052 #endif
00053 
00054 /**@brief Function for error handling, which is called when an error has occurred.
00055  *
00056  * @warning This handler is an example only and does not fit a final product. You need to analyze
00057  *          how your product is supposed to react in case of error.
00058  *
00059  * @param[in] error_code  Error code supplied to the handler.
00060  * @param[in] line_num    Line number where the handler is called.
00061  * @param[in] p_file_name Pointer to the file name.
00062  *
00063  * Function is implemented as weak so that it can be overwritten by custom application error handler
00064  * when needed.
00065  */
00066 
00067 /*lint -save -e14 */
00068 __WEAK void app_error_handler(uint32_t error_code, uint32_t line_num, const uint8_t * p_file_name)
00069 {
00070     // On assert, the system can only recover with a reset.
00071 #ifndef DEBUG
00072     NVIC_SystemReset();
00073 #else
00074     
00075 #ifdef BSP_DEFINES_ONLY 
00076     LEDS_ON(LEDS_MASK);
00077 #else
00078     UNUSED_VARIABLE(bsp_indication_set(BSP_INDICATE_FATAL_ERROR));
00079     // This call can be used for debug purposes during application development.
00080     // @note CAUTION: Activating this code will write the stack to flash on an error.
00081     //                This function should NOT be used in a final product.
00082     //                It is intended STRICTLY for development/debugging purposes.
00083     //                The flash write will happen EVEN if the radio is active, thus interrupting
00084     //                any communication.
00085     //                Use with care. Uncomment the line below to use.
00086     //ble_debug_assert_handler(error_code, line_num, p_file_name);
00087 #endif // BSP_DEFINES_ONLY
00088 
00089     m_error_code = error_code;
00090     m_line_num = line_num;
00091     m_p_file_name = p_file_name;
00092 
00093     UNUSED_VARIABLE(m_error_code);
00094     UNUSED_VARIABLE(m_line_num);
00095     UNUSED_VARIABLE(m_p_file_name);
00096     __disable_irq();
00097     while(1) ;
00098 #endif // DEBUG
00099 }
00100 /*lint -restore */