1 /*
2  * Copyright (c) 2018, Cypress
3  * Copyright (c) 2020-2021, ATL Electronics
4  *
5  * SPDX-License-Identifier: Apache-2.0
6  */
7 
8 /**
9  * @file
10  * @brief Board configuration macros
11  *
12  * This header file is used to specify and describe board-level aspects
13  */
14 
15 #ifndef _SOC__H_
16 #define _SOC__H_
17 
18 #include <zephyr/sys/util.h>
19 
20 #ifndef _ASMLANGUAGE
21 
22 #include <cy_device_headers.h>
23 #include "../common/soc_gpio.h"
24 #include "../common/cypress_psoc6_dt.h"
25 
26 #endif /* !_ASMLANGUAGE */
27 
28 #endif /* _SOC__H_ */
29