From 4b02d8e2eebd93fce1bc364ede2cbe4f837b79fb Mon Sep 17 00:00:00 2001 From: Robert Lubos Date: Mon, 6 Nov 2017 17:58:20 +0100 Subject: [PATCH] [nRF52840] remove __aeabi_assert definition from platform (#2321) --- examples/platforms/nrf52840/platform.c | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/examples/platforms/nrf52840/platform.c b/examples/platforms/nrf52840/platform.c index 4e1f1bca6..931fe1cd9 100644 --- a/examples/platforms/nrf52840/platform.c +++ b/examples/platforms/nrf52840/platform.c @@ -94,14 +94,3 @@ __WEAK void PlatformEventSignalPending(void) { // Intentionally empty } - -#if defined(__CC_ARM) -__WEAK void __aeabi_assert(const char *aExpr, const char *aFile, int aLine) -{ - (void) aExpr; - (void) aFile; - (void) aLine; - - while (1); -} -#endif