-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ports/mimxrt10xx/boards: Add configuration files for three boards.
- Seed Arch Mix RT1052 - Olimex RT1011 - Makerdiary RT1011 Nano Kit All differ only slightly from the respective mimxrt10xxevk files. Major changes are flash size and LED pin. All have been tested with theses boards. Signed-off-by: robert-hh <[email protected]>
- Loading branch information
Showing
16 changed files
with
2,865 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
/* | ||
* The MIT License (MIT) | ||
* | ||
* Copyright (c) 2020 Ha Thach for Adafruit Industries | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in | ||
* all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
* THE SOFTWARE. | ||
* | ||
* This file is part of the TinyUSB stack. | ||
*/ | ||
|
||
|
||
#ifndef BOARD_H_ | ||
#define BOARD_H_ | ||
|
||
// Size of on-board external flash | ||
#define BOARD_FLASH_SIZE (8*1024*1024) | ||
|
||
//--------------------------------------------------------------------+ | ||
// LED | ||
//--------------------------------------------------------------------+ | ||
|
||
#define LED_PINMUX IOMUXC_GPIO_AD_B0_09_GPIO1_IO09 | ||
#define LED_PORT GPIO1 | ||
#define LED_PIN 9 | ||
#define LED_STATE_ON 0 | ||
|
||
//--------------------------------------------------------------------+ | ||
// Neopixel | ||
//--------------------------------------------------------------------+ | ||
|
||
// Number of neopixels | ||
#define NEOPIXEL_NUMBER 0 | ||
|
||
//--------------------------------------------------------------------+ | ||
// Button | ||
//--------------------------------------------------------------------+ | ||
|
||
|
||
//--------------------------------------------------------------------+ | ||
// USB UF2 | ||
//--------------------------------------------------------------------+ | ||
|
||
#define USB_VID 0x2886 | ||
#define USB_PID 0x0010 | ||
#define USB_MANUFACTURER "Seeed Technology Co., Ltd." | ||
#define USB_PRODUCT "RT1052 ARCH MIX" | ||
|
||
#define UF2_PRODUCT_NAME USB_MANUFACTURER " " USB_PRODUCT | ||
#define UF2_BOARD_ID "MIMXRT1052-ARCH_MIX-V1" | ||
#define UF2_VOLUME_LABEL "ARCHMIXBOOT" | ||
#define UF2_INDEX_URL "https://https://wiki.seeedstudio.com/Arch_Mix/" | ||
|
||
//--------------------------------------------------------------------+ | ||
// UART | ||
//--------------------------------------------------------------------+ | ||
|
||
#define UART_DEV LPUART1 | ||
#define UART_RX_PINMUX IOMUXC_GPIO_AD_B0_13_LPUART1_RXD | ||
// On Rev A1 of the board this is on J31 closer to the edge. | ||
#define UART_TX_PINMUX IOMUXC_GPIO_AD_B0_12_LPUART1_TXD | ||
|
||
#endif /* BOARD_H_ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
MCU = MIMXRT1052 | ||
CFLAGS += -DCPU_MIMXRT1052DVL6B | ||
|
||
# For flash-jlink target | ||
JLINK_DEVICE = MIMXRT1052xxxxB | ||
|
||
# For flash-pyocd target | ||
PYOCD_TARGET = mimxrt1052 | ||
|
||
# flash using pyocd | ||
flash: flash-pyocd-bin | ||
erase: erase-pyocd |
Oops, something went wrong.