28 lines
454 B
C
28 lines
454 B
C
/*
|
|
* Copyright (c) 2018, Cypress
|
|
* Copyright (c) 2020-2021, ATL Electronics
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
* @brief Board configuration macros
|
|
*
|
|
* This header file is used to specify and describe board-level aspects
|
|
*/
|
|
|
|
#ifndef _SOC__H_
|
|
#define _SOC__H_
|
|
|
|
#include <zephyr/sys/util.h>
|
|
|
|
#ifndef _ASMLANGUAGE
|
|
|
|
#include <cy_device_headers.h>
|
|
#include "cypress_psoc6_dt.h"
|
|
|
|
#endif /* !_ASMLANGUAGE */
|
|
|
|
#endif /* _SOC__H_ */
|