diff options
Diffstat (limited to 'boards/tdx-aquila-imx95/pin_mux.h')
-rwxr-xr-x | boards/tdx-aquila-imx95/pin_mux.h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/boards/tdx-aquila-imx95/pin_mux.h b/boards/tdx-aquila-imx95/pin_mux.h new file mode 100755 index 0000000..2930221 --- /dev/null +++ b/boards/tdx-aquila-imx95/pin_mux.h @@ -0,0 +1,44 @@ +/* + * Copyright 2023 NXP + * + * SPDX-License-Identifier: BSD-3-Clause + */ + +#ifndef PIN_MUX_H +#define PIN_MUX_H + +#include "fsl_iomuxc.h" + +/*********************************************************************************************************************** + * Definitions + **********************************************************************************************************************/ + +/*! + * @addtogroup BRD_SM_TDXAQUILAIMX95 + * @file + * @{ + */ + +/*********************************************************************************************************************** + * API + **********************************************************************************************************************/ + +#if defined(__cplusplus) +extern "C" { +#endif + +/*! + * @brief Configures pin routing and optionally pin electrical features. + * + */ +void BOARD_InitPins(void); /*!< Function assigned for the core: Cortex-M33[cm33] */ + +#if defined(__cplusplus) +} +#endif + +/*! + * @} + */ +#endif /* PIN_MUX_H */ + |