Don't put comments on mpconfigboard.mk lines

This commit is contained in:
Dan Halbert 2023-11-28 18:19:50 -05:00
parent 9924ffa00e
commit 0029df439c
3 changed files with 15 additions and 7 deletions

View File

@ -7,12 +7,13 @@ CHIP_VARIANT = SAMD21G18A
CHIP_FAMILY = samd21
SPI_FLASH_FILESYSTEM = 1
EXTERNAL_FLASH_DEVICES = "W25Q64JVxQ, GD25Q64C"
EXTERNAL_FLASH_DEVICES = "W25Q64JVxQ, GD25Q64C, W25Q16JVxQ"
LONGINT_IMPL = NONE
# To keep the build small
CIRCUITPY_AUDIOBUSIO = 0
CIRCUITPY_BUSDEVICE = 1 # lis3dh needs it
# lis3dh needs adafruit_bus_device
CIRCUITPY_BUSDEVICE = 1
CIRCUITPY_KEYPAD = 0
# Include these Python libraries in firmware.

View File

@ -15,15 +15,19 @@ CIRCUITPY_FULL_BUILD = 0
# Many I/O functions are not available or not used in a keyboard
# CIRCUITPY_ANALOGIO = 1 # Needed for potentiometer input (mouse)
CIRCUITPY_AUDIOCORE = 0
CIRCUITPY_BUSIO = 0 # Needed for I2C, SPI and UART - removed that for keyboards...
# Needed for I2C, SPI and UART - removed that for keyboards...
CIRCUITPY_BUSIO = 0
CIRCUITPY_PULSEIO = 0
# CIRCUITPY_PWMIO = 1 # only needed for speaker or LED PWM functions. Takes 2314 bytes.
# only needed for speaker or LED PWM functions. Takes 2314 bytes.
# CIRCUITPY_PWMIO = 1
CIRCUITPY_RTC = 0
CIRCUITPY_MATH = 0
#CIRCUITPY_RANDOM = 0
CIRCUITPY_ONEWIREIO = 0
CIRCUITPY_NEOPIXEL_WRITE = 1 # Needed for RGB LEDs
CIRCUITPY_RAINBOWIO = 1 # Needed for RGB LEDs
# Needed for RGB LEDs
CIRCUITPY_NEOPIXEL_WRITE = 1
# Needed for RGB LEDs
CIRCUITPY_RAINBOWIO = 1
# These are used in a keyboard or computer input device.
CIRCUITPY_ROTARYIO = 1
CIRCUITPY_KEYPAD = 1

View File

@ -4,7 +4,10 @@ USB_PRODUCT = "stm32f411ce blackpill"
USB_MANUFACTURER = "WeAct"
# SPI_FLASH_FILESYSTEM = 1
# EXTERNAL_FLASH_DEVICES = xxxxxx #See supervisor/shared/external_flash/devices.h for options
# See supervisor/shared/external_flash/devices.h for options
# EXTERNAL_FLASH_DEVICES = xxxxxx
# LONGINT_IMPL = MPZ
INTERNAL_FLASH_FILESYSTEM = 1