27 lines
479 B
C
27 lines
479 B
C
/*
|
|
* Copyright (c) 2020, Seagate
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
* @brief Board configuration macros for the nxp_lpc11u6x platform
|
|
*
|
|
* This header file is used to specify and describe board-level aspects for the
|
|
* 'nxp_lpc11u6x' platform.
|
|
*/
|
|
|
|
#ifndef _SOC__H_
|
|
#define _SOC__H_
|
|
|
|
#ifndef _ASMLANGUAGE
|
|
#include <sys/util.h>
|
|
|
|
/* Add include for DTS generated information */
|
|
#include <devicetree.h>
|
|
|
|
#endif /* !_ASMLANGUAGE */
|
|
|
|
#endif /* _SOC__H_ */
|