2020-01-08 23:32:45 -05:00
|
|
|
#define MICROPY_HW_BOARD_NAME "iMX RT 1060 EVK"
|
|
|
|
#define MICROPY_HW_MCU_NAME "IMXRT1062DVJ6A"
|
|
|
|
|
|
|
|
// If you change this, then make sure to update the linker scripts as well to
|
|
|
|
// make sure you don't overwrite code
|
|
|
|
#define CIRCUITPY_INTERNAL_NVM_SIZE 0
|
|
|
|
|
|
|
|
#define BOARD_FLASH_SIZE (8 * 1024 * 1024)
|
|
|
|
|
2022-02-18 20:57:54 -05:00
|
|
|
#define MICROPY_HW_LED_STATUS (&pin_GPIO_AD_B0_09)
|
2022-03-08 21:15:43 -05:00
|
|
|
#define MICROPY_HW_LED_STATUS_INVERTED (1)
|
2022-02-18 20:57:54 -05:00
|
|
|
|
2020-01-08 23:32:45 -05:00
|
|
|
#define DEFAULT_I2C_BUS_SCL (&pin_GPIO_AD_B1_00)
|
|
|
|
#define DEFAULT_I2C_BUS_SDA (&pin_GPIO_AD_B1_01)
|
|
|
|
|
|
|
|
#define DEFAULT_UART_BUS_RX (&pin_GPIO_AD_B1_07)
|
|
|
|
#define DEFAULT_UART_BUS_TX (&pin_GPIO_AD_B1_06)
|
2022-02-18 20:57:54 -05:00
|
|
|
|
2022-06-30 20:42:30 -04:00
|
|
|
#define CIRCUITPY_CONSOLE_UART_TX (&pin_GPIO_AD_B0_12)
|
|
|
|
#define CIRCUITPY_CONSOLE_UART_RX (&pin_GPIO_AD_B0_13)
|
2022-02-18 20:57:54 -05:00
|
|
|
|
|
|
|
// Put host on the first USB so that right angle OTG adapters can fit. This is
|
|
|
|
// the right port when looking at the board.
|
|
|
|
#define CIRCUITPY_USB_DEVICE_INSTANCE 1
|
|
|
|
#define CIRCUITPY_USB_HOST_INSTANCE 0
|