1 /* 2 * Copyright 2019 NXP 3 * All rights reserved. 4 * 5 * SPDX-License-Identifier: BSD-3-Clause 6 */ 7 8 #ifndef _BOARD_H_ 9 #define _BOARD_H_ 10 11 #include "clock_config.h" 12 #include "fsl_common.h" 13 #include "fsl_gpio.h" 14 15 /******************************************************************************* 16 * Definitions 17 ******************************************************************************/ 18 /*! @brief The board name */ 19 #define BOARD_NAME "MIMXRT1010-EVK" 20 21 /* The UART to use for debug messages. */ 22 #define BOARD_DEBUG_UART_TYPE kSerialPort_Uart 23 #define BOARD_DEBUG_UART_BASEADDR (uint32_t) LPUART1 24 #define BOARD_DEBUG_UART_INSTANCE 1U 25 26 #define BOARD_DEBUG_UART_CLK_FREQ BOARD_DebugConsoleSrcFreq() 27 28 #define BOARD_UART_IRQ LPUART1_IRQn 29 #define BOARD_UART_IRQ_HANDLER LPUART1_IRQHandler 30 31 #ifndef BOARD_DEBUG_UART_BAUDRATE 32 #define BOARD_DEBUG_UART_BAUDRATE (115200U) 33 #endif /* BOARD_DEBUG_UART_BAUDRATE */ 34 35 /* @Brief Board accelerator sensor configuration */ 36 #define BOARD_ACCEL_I2C_BASEADDR LPI2C1 37 #define BOARD_ACCEL_I2C_CLOCK_SOURCE_SELECT (0U) 38 #define BOARD_ACCEL_I2C_CLOCK_SOURCE_DIVIDER (5U) 39 #define BOARD_ACCEL_I2C_CLOCK_FREQ (CLOCK_GetFreq(kCLOCK_Usb1PllClk) / 8 / (BOARD_ACCEL_I2C_CLOCK_SOURCE_DIVIDER + 1U)) 40 41 #define BOARD_CODEC_I2C_BASEADDR LPI2C1 42 #define BOARD_CODEC_I2C_INSTANCE 1U 43 #define BOARD_CODEC_I2C_CLOCK_SOURCE_SELECT (0U) 44 #define BOARD_CODEC_I2C_CLOCK_SOURCE_DIVIDER (5U) 45 #define BOARD_CODEC_I2C_CLOCK_FREQ (10000000U) 46 47 /*! @brief The USER_LED used for board */ 48 #define LOGIC_LED_ON (0U) 49 #define LOGIC_LED_OFF (1U) 50 #ifndef BOARD_USER_LED_GPIO 51 #define BOARD_USER_LED_GPIO GPIO1 52 #endif 53 #ifndef BOARD_USER_LED_GPIO_PIN 54 #define BOARD_USER_LED_GPIO_PIN (11U) 55 #endif 56 57 #define USER_LED_INIT(output) \ 58 GPIO_PinWrite(BOARD_USER_LED_GPIO, BOARD_USER_LED_GPIO_PIN, output); \ 59 BOARD_USER_LED_GPIO->GDIR |= (1U << BOARD_USER_LED_GPIO_PIN) /*!< Enable target USER_LED */ 60 #define USER_LED_OFF() \ 61 GPIO_PortClear(BOARD_USER_LED_GPIO, 1U << BOARD_USER_LED_GPIO_PIN) /*!< Turn off target USER_LED */ 62 #define USER_LED_ON() GPIO_PortSet(BOARD_USER_LED_GPIO, 1U << BOARD_USER_LED_GPIO_PIN) /*!<Turn on target USER_LED*/ 63 #define USER_LED_TOGGLE() \ 64 GPIO_PinWrite(BOARD_USER_LED_GPIO, BOARD_USER_LED_GPIO_PIN, \ 65 0x1 ^ GPIO_PinRead(BOARD_USER_LED_GPIO, BOARD_USER_LED_GPIO_PIN)) /*!< Toggle target USER_LED */ 66 67 /*! @brief Define the port interrupt number for the board switches */ 68 #ifndef BOARD_USER_BUTTON_GPIO 69 #define BOARD_USER_BUTTON_GPIO GPIO2 70 #endif 71 #ifndef BOARD_USER_BUTTON_GPIO_PIN 72 #define BOARD_USER_BUTTON_GPIO_PIN (5U) 73 #endif 74 #define BOARD_USER_BUTTON_IRQ GPIO2_Combined_0_15_IRQn 75 #define BOARD_USER_BUTTON_IRQ_HANDLER GPIO2_Combined_0_15_IRQHandler 76 #define BOARD_USER_BUTTON_NAME "SW4" 77 78 /*! @brief The flash size */ 79 #define BOARD_FLASH_SIZE (0x1000000U) 80 81 /* USB PHY condfiguration */ 82 #define BOARD_USB_PHY_D_CAL (0x0CU) 83 #define BOARD_USB_PHY_TXCAL45DP (0x06U) 84 #define BOARD_USB_PHY_TXCAL45DM (0x06U) 85 86 #define BOARD_ARDUINO_INT_IRQ (GPIO1_Combined_16_31_IRQn) 87 #define BOARD_ARDUINO_I2C_IRQ (LPI2C1_IRQn) 88 #define BOARD_ARDUINO_I2C_INDEX (1) 89 90 /* Serial MWM WIFI */ 91 #define BOARD_SERIAL_MWM_PORT_CLK_FREQ BOARD_DebugConsoleSrcFreq() 92 #define BOARD_SERIAL_MWM_PORT LPUART1 93 #define BOARD_SERIAL_MWM_PORT_IRQn LPUART1_IRQn 94 #define BOARD_SERIAL_MWM_RST_GPIO GPIO1 95 #define BOARD_SERIAL_MWM_RST_PIN 16 96 #define BOARD_SERIAL_MWM_RST_WRITE(output) GPIO_PinWrite(BOARD_SERIAL_MWM_RST_GPIO, BOARD_SERIAL_MWM_RST_PIN, output) 97 98 #if defined(__cplusplus) 99 extern "C" { 100 #endif /* __cplusplus */ 101 102 /******************************************************************************* 103 * API 104 ******************************************************************************/ 105 uint32_t BOARD_DebugConsoleSrcFreq(void); 106 107 void BOARD_InitDebugConsole(void); 108 void BOARD_ConfigMPU(void); 109 #if defined(SDK_I2C_BASED_COMPONENT_USED) && SDK_I2C_BASED_COMPONENT_USED 110 void BOARD_InitDebugConsole(void); 111 void BOARD_LPI2C_Init(LPI2C_Type *base, uint32_t clkSrc_Hz); 112 status_t BOARD_LPI2C_Send(LPI2C_Type *base, 113 uint8_t deviceAddress, 114 uint32_t subAddress, 115 uint8_t subaddressSize, 116 uint8_t *txBuff, 117 uint8_t txBuffSize); 118 status_t BOARD_LPI2C_Receive(LPI2C_Type *base, 119 uint8_t deviceAddress, 120 uint32_t subAddress, 121 uint8_t subaddressSize, 122 uint8_t *rxBuff, 123 uint8_t rxBuffSize); 124 void BOARD_Accel_I2C_Init(void); 125 status_t BOARD_Accel_I2C_Send(uint8_t deviceAddress, uint32_t subAddress, uint8_t subaddressSize, uint32_t txBuff); 126 status_t BOARD_Accel_I2C_Receive( 127 uint8_t deviceAddress, uint32_t subAddress, uint8_t subaddressSize, uint8_t *rxBuff, uint8_t rxBuffSize); 128 void BOARD_Codec_I2C_Init(void); 129 status_t BOARD_Codec_I2C_Send( 130 uint8_t deviceAddress, uint32_t subAddress, uint8_t subAddressSize, const uint8_t *txBuff, uint8_t txBuffSize); 131 status_t BOARD_Codec_I2C_Receive( 132 uint8_t deviceAddress, uint32_t subAddress, uint8_t subAddressSize, uint8_t *rxBuff, uint8_t rxBuffSize); 133 #endif /* SDK_I2C_BASED_COMPONENT_USED */ 134 #if defined(__cplusplus) 135 } 136 #endif /* __cplusplus */ 137 138 #endif /* _BOARD_H_ */ 139