2017-09-22 21:05:51 -04:00
|
|
|
#define MICROPY_HW_BOARD_NAME "Metro M4 Express"
|
2017-10-19 22:39:16 -04:00
|
|
|
#define MICROPY_HW_MCU_NAME "samd51j19"
|
2017-09-22 21:05:51 -04:00
|
|
|
|
|
|
|
#define CIRCUITPY_MCU_FAMILY samd51
|
|
|
|
|
2018-03-22 19:42:47 -04:00
|
|
|
// This is for Rev F which is green
|
2018-02-20 15:34:07 -05:00
|
|
|
|
2017-09-22 21:05:51 -04:00
|
|
|
#define MICROPY_HW_LED_TX PIN_PA27
|
|
|
|
#define MICROPY_HW_LED_RX PIN_PB06
|
|
|
|
|
2018-03-22 19:42:47 -04:00
|
|
|
#define MICROPY_HW_NEOPIXEL (&pin_PB22)
|
2017-09-22 21:05:51 -04:00
|
|
|
|
2017-11-22 23:07:21 -05:00
|
|
|
// These are pins not to reset.
|
2018-02-20 15:34:07 -05:00
|
|
|
// QSPI Data pins and TX LED
|
|
|
|
#define MICROPY_PORT_A (PORT_PA08 | PORT_PA09 | PORT_PA10 | PORT_PA11 | PORT_PA27)
|
|
|
|
// RX LED, QSPI CS, QSPI SCK and NeoPixel pin
|
2018-03-22 19:42:47 -04:00
|
|
|
#define MICROPY_PORT_B ( PORT_PB06 | PORT_PB10 | PORT_PB11 | PORT_PB22)
|
2018-02-20 15:34:07 -05:00
|
|
|
#define MICROPY_PORT_C (0)
|
|
|
|
#define MICROPY_PORT_D (0)
|
2017-09-22 21:05:51 -04:00
|
|
|
|
|
|
|
#define AUTORESET_DELAY_MS 500
|
|
|
|
|
|
|
|
// If you change this, then make sure to update the linker scripts as well to
|
2017-11-22 23:07:21 -05:00
|
|
|
// make sure you don't overwrite code
|
2018-04-12 21:13:40 -04:00
|
|
|
#define CIRCUITPY_INTERNAL_NVM_SIZE 8192
|
2017-09-22 21:05:51 -04:00
|
|
|
|
2017-11-22 23:07:21 -05:00
|
|
|
#define BOARD_FLASH_SIZE (FLASH_SIZE - 0x4000 - CIRCUITPY_INTERNAL_NVM_SIZE)
|
|
|
|
|
2018-02-28 22:15:54 -05:00
|
|
|
#include "external_flash/devices.h"
|
|
|
|
|
2018-03-01 15:45:12 -05:00
|
|
|
#define EXTERNAL_FLASH_DEVICE_COUNT 3
|
|
|
|
#define EXTERNAL_FLASH_DEVICES S25FL116K, S25FL216K, GD25Q16C
|
2018-02-28 22:15:54 -05:00
|
|
|
|
|
|
|
#include "external_flash/external_flash.h"
|
2018-05-16 15:36:36 -04:00
|
|
|
|
2018-05-16 15:54:01 -04:00
|
|
|
#define DEFAULT_I2C_BUS_SCL (&pin_PB03)
|
|
|
|
#define DEFAULT_I2C_BUS_SDA (&pin_PB02)
|
2018-05-16 16:07:55 -04:00
|
|
|
|
2018-05-16 15:36:36 -04:00
|
|
|
#define DEFAULT_SPI_BUS_SCK (&pin_PA13)
|
|
|
|
#define DEFAULT_SPI_BUS_MOSI (&pin_PA12)
|
2018-05-16 16:07:55 -04:00
|
|
|
#define DEFAULT_SPI_BUS_MISO (&pin_PA14)
|