2016-11-28 19:21:40 -08:00
|
|
|
#define USB_REPL
|
|
|
|
|
2017-04-11 17:59:02 -07:00
|
|
|
#define MICROPY_HW_BOARD_NAME "Adafruit CircuitPlayground Express"
|
2016-11-28 19:21:40 -08:00
|
|
|
#define MICROPY_HW_MCU_NAME "samd21g18"
|
|
|
|
|
2017-05-02 15:25:06 -07:00
|
|
|
// Salae reads 12mhz which is the limit even though we set it to the safer 8mhz.
|
|
|
|
#define SPI_FLASH_BAUDRATE (8000000)
|
2016-11-28 19:21:40 -08:00
|
|
|
|
|
|
|
// On-board flash
|
|
|
|
#define SPI_FLASH_MUX_SETTING SPI_SIGNAL_MUX_SETTING_E
|
|
|
|
// Use default pinmux for the chip select since we manage it ourselves.
|
2017-01-05 14:36:33 -08:00
|
|
|
#define SPI_FLASH_PAD0_PINMUX PINMUX_PA16D_SERCOM3_PAD0 // MISO
|
2017-05-03 10:50:29 -07:00
|
|
|
#define SPI_FLASH_PAD1_PINMUX PINMUX_UNUSED // CS
|
2017-01-05 14:36:33 -08:00
|
|
|
#define SPI_FLASH_PAD2_PINMUX PINMUX_PA20D_SERCOM3_PAD2 // MOSI
|
|
|
|
#define SPI_FLASH_PAD3_PINMUX PINMUX_PA21D_SERCOM3_PAD3 // SCK
|
|
|
|
|
2016-12-21 14:07:50 -08:00
|
|
|
#define SPI_FLASH_CS PIN_PB22
|
2017-01-05 14:36:33 -08:00
|
|
|
#define SPI_FLASH_SERCOM SERCOM3
|
2016-11-28 19:21:40 -08:00
|
|
|
|
2017-01-05 14:36:33 -08:00
|
|
|
// PA24 and PA25 are USB.
|
|
|
|
#define MICROPY_PORT_A (PORT_PA16 | PORT_PA20 | PORT_PA21 | PORT_PA24 | PORT_PA25)
|
|
|
|
#define MICROPY_PORT_B (PORT_PB22)
|
2016-12-06 10:31:38 -08:00
|
|
|
|
2017-05-12 12:55:31 -07:00
|
|
|
#define SPEAKER_ENABLE_PIN (&pin_PA30)
|
|
|
|
|
2016-11-29 14:29:33 -08:00
|
|
|
#include "spi_flash.h"
|
2016-12-01 13:46:44 -08:00
|
|
|
|
2017-08-25 13:00:27 -07:00
|
|
|
// 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 256
|
|
|
|
|
|
|
|
#define BOARD_FLASH_SIZE (0x00040000 - 0x2000 - CIRCUITPY_INTERNAL_NVM_SIZE)
|
2017-02-10 04:56:31 -08:00
|
|
|
|
2017-05-12 14:47:39 -07:00
|
|
|
#include "flash_S25FL216K.h"
|
2017-08-03 13:44:04 -07:00
|
|
|
#include "flash_GD25Q16C.h"
|
2017-05-12 14:47:39 -07:00
|
|
|
|
2017-02-19 14:11:24 +01:00
|
|
|
#define CALIBRATE_CRYSTALLESS 1
|
2017-06-16 14:55:53 -07:00
|
|
|
|
|
|
|
// Explanation of how a user got into safe mode.
|
|
|
|
#define BOARD_USER_SAFE_MODE "pressing both buttons at start up"
|