Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of nRF51822 by
nrf_assert.c
00001 /* Copyright (c) 2006 Nordic Semiconductor. All Rights Reserved. 00002 * 00003 * The information contained herein is property of Nordic Semiconductor ASA. 00004 * Terms and conditions of usage are described in detail in NORDIC 00005 * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT. 00006 * 00007 * Licensees are granted free, non-transferable use of the information. NO 00008 * WARRANTY of ANY KIND is provided. This heading must NOT be removed from 00009 * the file. 00010 * 00011 */ 00012 #include "nrf_assert.h" 00013 00014 #if defined(DEBUG_NRF) 00015 void assert_nrf_callback(uint16_t line_num, const uint8_t * file_name) 00016 { 00017 (void) file_name; /* Unused parameter */ 00018 (void) line_num; /* Unused parameter */ 00019 00020 while (1) ; 00021 } 00022 #endif /* DEBUG_NRF */
Generated on Tue Jul 12 2022 16:21:03 by
