Remove include guards in internal files; it is an agreed convention to not have include guards in internal header files in Bluetooth subsystem. Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
14 lines
216 B
C
14 lines
216 B
C
/*
|
|
* Copyright (c) 2016 Nordic Semiconductor ASA
|
|
* Copyright (c) 2016 Vinayak Kariappa Chettimada
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
static inline void cpu_sleep(void)
|
|
{
|
|
__WFE();
|
|
__SEV();
|
|
__WFE();
|
|
}
|