Skip to content

Commit 050caf7

Browse files
authored
Merge pull request #9156 from dhalbert/bitmapfilter-on-if-bitmaptools-on
Turn on bitmapfilter with the same criteria as bitmaptools
2 parents f9a18fb + a48be88 commit 050caf7

File tree

19 files changed

+28
-8
lines changed

19 files changed

+28
-8
lines changed

ports/atmel-samd/boards/circuitplayground_express_displayio/mpconfigboard.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ CIRCUITPY_USB_MIDI = 0
1919

2020
# So not all of displayio, sorry!
2121
CIRCUITPY_VECTORIO = 0
22+
CIRCUITPY_BITMAPFILTER = 0
2223
CIRCUITPY_BITMAPTOOLS = 0
2324
CIRCUITPY_PARALLELDISPLAYBUS = 0
2425

ports/atmel-samd/boards/dynossat_edu_eps/mpconfigboard.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ LONGINT_IMPL = MPZ
1313

1414
CIRCUITPY_FULLBUILD = 0
1515
CIRCUITPY_BITBANGIO = 0
16+
CIRCUITPY_BITMAPFILTER = 0
1617
CIRCUITPY_BITMAPTOOLS = 0
1718
CIRCUITPY_BUSDEVICE = 0
1819
CIRCUITPY_TOUCHIO = 0

ports/atmel-samd/boards/feather_m4_can/mpconfigboard.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ EXTERNAL_FLASH_DEVICES = "GD25Q16C,W25Q16JVxQ"
1111
LONGINT_IMPL = MPZ
1212

1313
CIRCUITPY__EVE = 1
14+
CIRCUITPY_BITMAPFILTER = 0
1415
CIRCUITPY_CANIO = 1
1516
CIRCUITPY_SYNTHIO = 0
1617
CIRCUITPY_GIFIO = 0

ports/atmel-samd/boards/pewpew_lcd/mpconfigboard.mk

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ CIRCUITPY_AUDIOMP3 = 0
3939
CIRCUITPY_AUDIOPWMIO = 0
4040
CIRCUITPY_BITBANG_APA102 = 0
4141
CIRCUITPY_BITBANGIO = 0
42-
CIRCUITPY_BITBANGIO = 0
43-
CIRCUITPY_BITMAPTOOLS = 0
42+
CIRCUITPY_BITMAPFILTER = 0
4443
CIRCUITPY_BITMAPTOOLS = 0
4544
CIRCUITPY_BLEIO = 0
4645
CIRCUITPY_BUSDEVICE = 0

ports/atmel-samd/boards/pewpew_m4/mpconfigboard.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ CIRCUITPY_USB_HID = 0
3636
CIRCUITPY_USB_MIDI = 0
3737
CIRCUITPY_VECTORIO = 0
3838
CIRCUITPY_BUSDEVICE = 0
39+
CIRCUITPY_BITMAPFILTER = 0
3940
CIRCUITPY_BITMAPTOOLS = 0
4041
CIRCUITPY_GIFIO = 0
4142
CIRCUITPY_WATCHDOG = 0

ports/atmel-samd/boards/robohatmm1_m4/mpconfigboard.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ EXTERNAL_FLASH_DEVICES = "W25Q64JVxQ"
1313
LONGINT_IMPL = MPZ
1414

1515
# Make room for more stuff
16+
CIRCUITPY_BITMAPFILTER = 0
1617
CIRCUITPY_BITMAPTOOLS = 0
1718
CIRCUITPY_DISPLAYIO = 0
1819
CIRCUITPY_FRAMEBUFFERIO = 0

ports/atmel-samd/boards/ugame10/mpconfigboard.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ CIRCUITPY_KEYPAD = 1
2020
CIRCUITPY_PULSEIO = 0
2121
CIRCUITPY_AUDIOBUSIO = 0
2222
CIRCUITPY_BITBANGIO = 0
23+
CIRCUITPY_BITMAPFILTER = 0
2324
CIRCUITPY_BITMAPTOOLS = 0
2425
CIRCUITPY_FREQUENCYIO = 0
2526
CIRCUITPY_I2CTARGET = 0

ports/atmel-samd/boards/winterbloom_big_honking_button/mpconfigboard.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ CIRCUITPY_AUDIOIO = 1
1616

1717
# Disable modules that are unusable on this special-purpose board.
1818
CIRCUITPY_BITBANGIO = 0
19+
CIRCUITPY_BITMAPFILTER = 0
1920
CIRCUITPY_BITMAPTOOLS = 0
2021
CIRCUITPY_FRAMEBUFFERIO = 0
2122
CIRCUITPY_FREQUENCYIO = 0

ports/atmel-samd/boards/winterbloom_sol/mpconfigboard.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ LONGINT_IMPL = MPZ
1717
# Disable modules that are unusable on this special-purpose board.
1818
CIRCUITPY_AUDIOBUSIO = 0
1919
CIRCUITPY_AUDIOIO = 0
20+
CIRCUITPY_BITMAPFILTER = 0
2021
CIRCUITPY_BITMAPTOOLS = 0
2122
CIRCUITPY_BLEIO_HCI = 0
2223
CIRCUITPY_DISPLAYIO = 0

ports/atmel-samd/mpconfigport.mk

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ CIRCUITPY_AUDIOMIXER ?= 0
2929
CIRCUITPY_AUDIOMP3 ?= 0
3030
CIRCUITPY_BINASCII ?= 0
3131
CIRCUITPY_BITBANGIO ?= 0
32+
CIRCUITPY_BITMAPFILTER ?= 0
3233
CIRCUITPY_BITMAPTOOLS ?= 0
3334
CIRCUITPY_BLEIO_HCI = 0
3435
CIRCUITPY_BUILTINS_POW3 ?= 0
@@ -102,6 +103,8 @@ endif
102103

103104

104105
CIRCUITPY_ALARM ?= 1
106+
# Not enough room for both bitmaptools and bitmapfilter on most boards.
107+
CIRCUITPY_BITMAPFILTER ?= 0
105108
CIRCUITPY_FLOPPYIO ?= $(CIRCUITPY_FULL_BUILD)
106109
CIRCUITPY_FRAMEBUFFERIO ?= $(CIRCUITPY_FULL_BUILD)
107110
CIRCUITPY_PS2IO ?= 1

0 commit comments

Comments
 (0)