2018-04-11 16:02:18 -04:00
|
|
|
#define MICROPY_HW_BOARD_NAME "ItsyBitsy M4 Express"
|
|
|
|
#define MICROPY_HW_MCU_NAME "samd51g19"
|
|
|
|
|
|
|
|
#define CIRCUITPY_MCU_FAMILY samd51
|
|
|
|
|
|
|
|
// This is for Rev B
|
|
|
|
#define MICROPY_HW_APA102_MOSI (&pin_PB03)
|
|
|
|
#define MICROPY_HW_APA102_SCK (&pin_PB02)
|
|
|
|
|
2018-04-19 14:42:03 -04:00
|
|
|
#define CIRCUITPY_BITBANG_APA102
|
|
|
|
|
2018-04-11 16:02:18 -04:00
|
|
|
// These are pins not to reset.
|
2018-04-19 14:42:03 -04:00
|
|
|
// QSPI Data pins
|
2018-04-11 16:02:18 -04:00
|
|
|
#define MICROPY_PORT_A (PORT_PA08 | PORT_PA09 | PORT_PA10 | PORT_PA11)
|
2018-04-19 14:42:03 -04:00
|
|
|
// DotStar pins, QSPI CS, and QSPI SCK
|
2018-04-11 16:02:18 -04:00
|
|
|
#define MICROPY_PORT_B (PORT_PB02 | PORT_PB03 | PORT_PB10 | PORT_PB11)
|
|
|
|
#define MICROPY_PORT_C (0)
|
|
|
|
#define MICROPY_PORT_D (0)
|
|
|
|
|
|
|
|
#define AUTORESET_DELAY_MS 500
|
|
|
|
|
|
|
|
// If you change this, then make sure to update the linker scripts as well to
|
|
|
|
// make sure you don't overwrite code
|
2018-04-12 21:13:40 -04:00
|
|
|
#define CIRCUITPY_INTERNAL_NVM_SIZE 8192
|
2018-04-11 16:02:18 -04:00
|
|
|
|
|
|
|
#define BOARD_FLASH_SIZE (FLASH_SIZE - 0x4000 - CIRCUITPY_INTERNAL_NVM_SIZE)
|
|
|
|
|
|
|
|
#include "external_flash/devices.h"
|
|
|
|
|
2018-04-19 14:42:03 -04:00
|
|
|
#define EXTERNAL_FLASH_DEVICE_COUNT 1
|
|
|
|
#define EXTERNAL_FLASH_DEVICES GD25Q16C
|
2018-04-11 16:02:18 -04:00
|
|
|
|
|
|
|
#include "external_flash/external_flash.h"
|
2018-05-16 15:25:24 -04:00
|
|
|
|
2018-05-16 15:54:01 -04:00
|
|
|
#define DEFAULT_I2C_BUS_SCL (&pin_PA13)
|
2018-05-16 15:57:25 -04:00
|
|
|
#define DEFAULT_I2C_BUS_SDA (&pin_PA12)
|
2018-05-16 16:07:55 -04:00
|
|
|
|
2018-05-16 15:36:36 -04:00
|
|
|
#define DEFAULT_SPI_BUS_SCK (&pin_PA01)
|
2018-05-16 15:25:24 -04:00
|
|
|
#define DEFAULT_SPI_BUS_MOSI (&pin_PA00)
|
2018-05-16 16:07:55 -04:00
|
|
|
#define DEFAULT_SPI_BUS_MISO (&pin_PB23)
|
2018-05-17 13:48:33 -04:00
|
|
|
|
|
|
|
#define DEFAULT_UART_BUS_RX (&pin_PA16)
|
|
|
|
#define DEFAULT_UART_BUS_TX (&pin_PA17)
|