33 lines
563 B
C
33 lines
563 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 <sys/util.h>
|
|
|
|
#ifndef _ASMLANGUAGE
|
|
|
|
/* Add include for DTS generated information */
|
|
#include <devicetree.h>
|
|
|
|
#include <cy_device_headers.h>
|
|
|
|
#include "../common/soc_gpio.h"
|
|
#include "../common/cypress_psoc6_dt.h"
|
|
|
|
#endif /* !_ASMLANGUAGE */
|
|
|
|
#endif /* _SOC__H_ */
|