Skip to content

Commit 0029df4

Browse files
committed
Don't put comments on mpconfigboard.mk lines
1 parent 9924ffa commit 0029df4

File tree

3 files changed

+15
-7
lines changed

3 files changed

+15
-7
lines changed

ports/atmel-samd/boards/hallowing_m0_express/mpconfigboard.mk

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,13 @@ CHIP_VARIANT = SAMD21G18A
77
CHIP_FAMILY = samd21
88

99
SPI_FLASH_FILESYSTEM = 1
10-
EXTERNAL_FLASH_DEVICES = "W25Q64JVxQ, GD25Q64C"
10+
EXTERNAL_FLASH_DEVICES = "W25Q64JVxQ, GD25Q64C, W25Q16JVxQ"
1111
LONGINT_IMPL = NONE
1212

1313
# To keep the build small
1414
CIRCUITPY_AUDIOBUSIO = 0
15-
CIRCUITPY_BUSDEVICE = 1 # lis3dh needs it
15+
# lis3dh needs adafruit_bus_device
16+
CIRCUITPY_BUSDEVICE = 1
1617
CIRCUITPY_KEYPAD = 0
1718

1819
# Include these Python libraries in firmware.

ports/atmel-samd/boards/seeeduino_xiao_kb/mpconfigboard.mk

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,19 @@ CIRCUITPY_FULL_BUILD = 0
1515
# Many I/O functions are not available or not used in a keyboard
1616
# CIRCUITPY_ANALOGIO = 1 # Needed for potentiometer input (mouse)
1717
CIRCUITPY_AUDIOCORE = 0
18-
CIRCUITPY_BUSIO = 0 # Needed for I2C, SPI and UART - removed that for keyboards...
18+
# Needed for I2C, SPI and UART - removed that for keyboards...
19+
CIRCUITPY_BUSIO = 0
1920
CIRCUITPY_PULSEIO = 0
20-
# CIRCUITPY_PWMIO = 1 # only needed for speaker or LED PWM functions. Takes 2314 bytes.
21+
# only needed for speaker or LED PWM functions. Takes 2314 bytes.
22+
# CIRCUITPY_PWMIO = 1
2123
CIRCUITPY_RTC = 0
2224
CIRCUITPY_MATH = 0
2325
#CIRCUITPY_RANDOM = 0
2426
CIRCUITPY_ONEWIREIO = 0
25-
CIRCUITPY_NEOPIXEL_WRITE = 1 # Needed for RGB LEDs
26-
CIRCUITPY_RAINBOWIO = 1 # Needed for RGB LEDs
27+
# Needed for RGB LEDs
28+
CIRCUITPY_NEOPIXEL_WRITE = 1
29+
# Needed for RGB LEDs
30+
CIRCUITPY_RAINBOWIO = 1
2731
# These are used in a keyboard or computer input device.
2832
CIRCUITPY_ROTARYIO = 1
2933
CIRCUITPY_KEYPAD = 1

ports/stm/boards/stm32f411ce_blackpill/mpconfigboard.mk

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ USB_PRODUCT = "stm32f411ce blackpill"
44
USB_MANUFACTURER = "WeAct"
55

66
# SPI_FLASH_FILESYSTEM = 1
7-
# EXTERNAL_FLASH_DEVICES = xxxxxx #See supervisor/shared/external_flash/devices.h for options
7+
8+
# See supervisor/shared/external_flash/devices.h for options
9+
# EXTERNAL_FLASH_DEVICES = xxxxxx
10+
811
# LONGINT_IMPL = MPZ
912

1013
INTERNAL_FLASH_FILESYSTEM = 1

0 commit comments

Comments
 (0)