1 /*
2  * Copyright 2018 NXP
3  * All rights reserved.
4  *
5  *
6  * SPDX-License-Identifier: BSD-3-Clause
7  */
8 
9 #include "fsl_adapter_reset.h"
10 
11 /************************************************************************************
12 *************************************************************************************
13 * Private prototypes
14 *************************************************************************************
15 ************************************************************************************/
16 
17 /************************************************************************************
18 *************************************************************************************
19 * Private memory declarations
20 *************************************************************************************
21 ************************************************************************************/
22 
23 /************************************************************************************
24 *************************************************************************************
25 * Public functions
26 *************************************************************************************
27 ************************************************************************************/
HAL_ResetMCU(void)28 void HAL_ResetMCU(void)
29 {
30     NVIC_SystemReset();
31 }
32