1 /*
2  * Copyright 2018 NXP
3  * All rights reserved.
4  *
5  *
6  * SPDX-License-Identifier: BSD-3-Clause
7  */
8 
9 #ifndef _RESET_H_
10 #define _RESET_H_
11 
12 #include "fsl_common.h"
13 /*!
14  * @addtogroup Reset
15  * @{
16  */
17 
18 /************************************************************************************
19 *************************************************************************************
20 * Include
21 *************************************************************************************
22 ***********************************************************************************/
23 
24 /************************************************************************************
25 *************************************************************************************
26 * Public types
27 *************************************************************************************
28 ************************************************************************************/
29 
30 /************************************************************************************
31 *************************************************************************************
32 * Public prototypes
33 *************************************************************************************
34 ************************************************************************************/
35 
36 /*!
37  * @brief Reset MCU.
38  *
39  */
40 void HAL_ResetMCU(void);
41 /*! @}*/
42 #endif /* _RESET_H_ */
43