File tree Expand file tree Collapse file tree 3 files changed +14
-6
lines changed
stm/boards/stm32f411ce_blackpill Expand file tree Collapse file tree 3 files changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,8 @@ LONGINT_IMPL = NONE
12
12
13
13
# To keep the build small
14
14
CIRCUITPY_AUDIOBUSIO = 0
15
- CIRCUITPY_BUSDEVICE = 1 # lis3dh needs it
15
+ # lis3dh needs adafruit_bus_device
16
+ CIRCUITPY_BUSDEVICE = 1
16
17
CIRCUITPY_KEYPAD = 0
17
18
18
19
# Include these Python libraries in firmware.
Original file line number Diff line number Diff line change @@ -15,15 +15,19 @@ CIRCUITPY_FULL_BUILD = 0
15
15
# Many I/O functions are not available or not used in a keyboard
16
16
# CIRCUITPY_ANALOGIO = 1 # Needed for potentiometer input (mouse)
17
17
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
19
20
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
21
23
CIRCUITPY_RTC = 0
22
24
CIRCUITPY_MATH = 0
23
25
# CIRCUITPY_RANDOM = 0
24
26
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
27
31
# These are used in a keyboard or computer input device.
28
32
CIRCUITPY_ROTARYIO = 1
29
33
CIRCUITPY_KEYPAD = 1
Original file line number Diff line number Diff line change @@ -4,7 +4,10 @@ USB_PRODUCT = "stm32f411ce blackpill"
4
4
USB_MANUFACTURER = "WeAct"
5
5
6
6
# 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
+
8
11
# LONGINT_IMPL = MPZ
9
12
10
13
INTERNAL_FLASH_FILESYSTEM = 1
You can’t perform that action at this time.
0 commit comments