pin_mux.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*
  2. * Copyright 2019 NXP.
  3. * All rights reserved.
  4. *
  5. * SPDX-License-Identifier: BSD-3-Clause
  6. */
  7. /***********************************************************************************************************************
  8. * This file was generated by the MCUXpresso Config Tools. Any manual edits made to this file
  9. * will be overwritten if the respective MCUXpresso Config Tools is used to update this file.
  10. **********************************************************************************************************************/
  11. #ifndef _PIN_MUX_H_
  12. #define _PIN_MUX_H_
  13. /***********************************************************************************************************************
  14. * Definitions
  15. **********************************************************************************************************************/
  16. /*! @brief Direction type */
  17. typedef enum _pin_mux_direction
  18. {
  19. kPIN_MUX_DirectionInput = 0U, /* Input direction */
  20. kPIN_MUX_DirectionOutput = 1U, /* Output direction */
  21. kPIN_MUX_DirectionInputOrOutput = 2U /* Input or output direction */
  22. } pin_mux_direction_t;
  23. /*!
  24. * @addtogroup pin_mux
  25. * @{
  26. */
  27. /***********************************************************************************************************************
  28. * API
  29. **********************************************************************************************************************/
  30. #if defined(__cplusplus)
  31. extern "C" {
  32. #endif
  33. /*!
  34. * @brief Calls initialization functions.
  35. *
  36. */
  37. void BOARD_InitBootPins(void);
  38. /*!
  39. * @brief Configures pin routing and optionally pin electrical features.
  40. *
  41. */
  42. void BOARD_InitPins(void);
  43. #if defined(__cplusplus)
  44. }
  45. #endif
  46. /*!
  47. * @}
  48. */
  49. #endif /* _PIN_MUX_H_ */
  50. /***********************************************************************************************************************
  51. * EOF
  52. **********************************************************************************************************************/