You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
345 B
17 lines
345 B
/* |
|
* Copyright (c) 2025 Texas Instruments |
|
* Copyright (c) 2025 Linumiz |
|
* |
|
* 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); |
|
}
|
|
|