File tree Expand file tree Collapse file tree 3 files changed +15
-7
lines changed
stm/boards/stm32f411ce_blackpill Expand file tree Collapse file tree 3 files changed +15
-7
lines changed Original file line number Diff line number Diff line change @@ -7,12 +7,13 @@ CHIP_VARIANT = SAMD21G18A
77CHIP_FAMILY = samd21
88
99SPI_FLASH_FILESYSTEM = 1
10- EXTERNAL_FLASH_DEVICES = "W25Q64JVxQ, GD25Q64C"
10+ EXTERNAL_FLASH_DEVICES = "W25Q64JVxQ, GD25Q64C, W25Q16JVxQ "
1111LONGINT_IMPL = NONE
1212
1313# To keep the build small
1414CIRCUITPY_AUDIOBUSIO = 0
15- CIRCUITPY_BUSDEVICE = 1 # lis3dh needs it
15+ # lis3dh needs adafruit_bus_device
16+ CIRCUITPY_BUSDEVICE = 1
1617CIRCUITPY_KEYPAD = 0
1718
1819# Include these Python libraries in firmware.
Original file line number Diff line number Diff 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)
1717CIRCUITPY_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
1920CIRCUITPY_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
2123CIRCUITPY_RTC = 0
2224CIRCUITPY_MATH = 0
2325# CIRCUITPY_RANDOM = 0
2426CIRCUITPY_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.
2832CIRCUITPY_ROTARYIO = 1
2933CIRCUITPY_KEYPAD = 1
Original file line number Diff line number Diff line change @@ -4,7 +4,10 @@ USB_PRODUCT = "stm32f411ce blackpill"
44USB_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
1013INTERNAL_FLASH_FILESYSTEM = 1
You can’t perform that action at this time.
0 commit comments