zephyr/soc/ti/simplelink/cc13x2_cc26x2/poweroff.c

17 lines
262 B
C

/*
* Copyright (c) 2023 Nordic Semiconductor ASA
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/sys/poweroff.h>
#include <zephyr/toolchain.h>
#include <ti/drivers/Power.h>
void z_sys_poweroff(void)
{
Power_shutdown(0, 0);
CODE_UNREACHABLE;
}