| /* | |
| * Copyright (c) 2025 Texas Instruments | |
| * Copyright (c) 2025 Linumiz GmbH | |
| * | |
| * SPDX-License-Identifier: Apache-2.0 | |
| */ | |
| #include <zephyr/init.h> | |
| #include <ti/driverlib/driverlib.h> | |
| #include <soc.h> | |
| void soc_early_init_hook(void) | |
| { | |
| /* Low Power Mode is configured to be SLEEP0 */ | |
| DL_SYSCTL_setBORThreshold(DL_SYSCTL_BOR_THRESHOLD_LEVEL_0); | |
| } |