Skip to content

Commit

Permalink
Merge pull request #8669 from dhalbert/fix-mpconfigboard.mk
Browse files Browse the repository at this point in the history
Don't put comments on mpconfigboard.mk lines; add mistaken flash chip for HalloWing M0
  • Loading branch information
tannewt authored Nov 28, 2023
2 parents 04a73bc + 0029df4 commit 601e07e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
12 changes: 8 additions & 4 deletions ports/atmel-samd/boards/seeeduino_xiao_kb/mpconfigboard.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 4 additions & 1 deletion ports/stm/boards/stm32f411ce_blackpill/mpconfigboard.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 601e07e

Please sign in to comment.