From 15cd907d35240eed7a47c6155c99cbde3a4311b4 Mon Sep 17 00:00:00 2001 From: George Beckstein Date: Mon, 24 Jun 2019 08:34:54 -0400 Subject: [PATCH] Fix alignment --- .../components/libraries/util/app_util_platform.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_SDK_15_0/components/libraries/util/app_util_platform.c b/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_SDK_15_0/components/libraries/util/app_util_platform.c index cb59facac3..af453651ef 100644 --- a/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_SDK_15_0/components/libraries/util/app_util_platform.c +++ b/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_SDK_15_0/components/libraries/util/app_util_platform.c @@ -77,7 +77,7 @@ void app_util_critical_region_enter(uint8_t *p_nested) * Retarget nRF SDK to use Mbed critical section API */ //app_util_disable_irq(); - core_util_critical_section_enter(); + core_util_critical_section_enter(); #endif } @@ -93,10 +93,10 @@ void app_util_critical_region_exit(uint8_t nested) (void) sd_nvic_critical_region_exit(nested); #else /** Mbed modification - * Retarget nRF SDK to use Mbed critical section API - */ - //app_util_enable_irq(); - core_util_critical_section_exit(); + * Retarget nRF SDK to use Mbed critical section API + */ + //app_util_enable_irq(); + core_util_critical_section_exit(); #endif }