1 /*
2  * Copyright 2024 NXP
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef _SOC__H_
8 #define _SOC__H_
9 
10 #ifndef _ASMLANGUAGE
11 
12 #include <fsl_port.h>
13 #include <fsl_common.h>
14 
15 #define PORT_MUX_GPIO kPORT_MuxAlt0 /* GPIO setting for the Port Mux Register */
16 
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
20 
21 #ifdef __cplusplus
22 }
23 #endif
24 
25 #endif /* !_ASMLANGUAGE */
26 
27 #endif /* _SOC__H_ */
28