Merge pull request #8669 from dhalbert/fix-mpconfigboard.mk
Don't put comments on mpconfigboard.mk lines; add mistaken flash chip for HalloWing M0
This commit is contained in:
commit
601e07e6c0
@ -12,7 +12,8 @@ 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.
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user