File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
ports/atmel-samd/boards/winterbloom_big_honking_button Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ CHIP_VARIANT = SAMD21G18A
9
9
CHIP_FAMILY = samd21
10
10
11
11
SPI_FLASH_FILESYSTEM = 1
12
- EXTERNAL_FLASH_DEVICE_COUNT = 1
13
- EXTERNAL_FLASH_DEVICES = "GD25Q16C"
12
+ EXTERNAL_FLASH_DEVICE_COUNT = 2
13
+ EXTERNAL_FLASH_DEVICES = "GD25Q16C, GD25Q64C "
14
14
LONGINT_IMPL = MPZ
15
15
16
16
CIRCUITPY_AUDIOIO = 1
Original file line number Diff line number Diff line change @@ -6,5 +6,7 @@ STATIC const mp_rom_map_elem_t board_global_dict_table[] = {
6
6
{ MP_ROM_QSTR (MP_QSTR_GATE_OUT ), MP_ROM_PTR (& pin_PA11 ) },
7
7
{ MP_ROM_QSTR (MP_QSTR_GATE_IN ), MP_ROM_PTR (& pin_PA14 ) },
8
8
{ MP_ROM_QSTR (MP_QSTR_PITCH_IN ), MP_ROM_PTR (& pin_PB08 ) },
9
+ /* Board revisions starting from v5 have PB10 tied to ground. */
10
+ { MP_ROM_QSTR (MP_QSTR_V5 ), MP_ROM_PTR (& pin_PB10 ) },
9
11
};
10
12
MP_DEFINE_CONST_DICT (board_module_globals , board_global_dict_table );
You can’t perform that action at this time.
0 commit comments