44 lines
859 B
C
44 lines
859 B
C
/*
|
|
* Copyright (c) 2017, NXP
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
* @brief Board configuration macros for the nxp_lpc54114 platform
|
|
*
|
|
* This header file is used to specify and describe board-level aspects for the
|
|
* 'nxp_lpc54114' platform.
|
|
*/
|
|
|
|
#ifndef _SOC__H_
|
|
#define _SOC__H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifndef _ASMLANGUAGE
|
|
#include <device.h>
|
|
#include <misc/util.h>
|
|
#include <fsl_common.h>
|
|
#endif /* !_ASMLANGUAGE */
|
|
|
|
#define IOCON_PIO_DIGITAL_EN 0x80u
|
|
#define IOCON_PIO_FUNC0 0x00u
|
|
#define IOCON_PIO_FUNC1 0x01u
|
|
#define IOCON_PIO_FUNC2 0x02u
|
|
#define IOCON_PIO_INPFILT_OFF 0x0100u
|
|
#define IOCON_PIO_INV_DI 0x00u
|
|
#define IOCON_PIO_MODE_INACT 0x00u
|
|
#define IOCON_PIO_OPENDRAIN_DI 0x00u
|
|
#define IOCON_PIO_SLEW_STANDARD 0x00u
|
|
#define IOCON_PIO_MODE_PULLUP 0x10u
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _SOC__H_ */
|