e1df598199
These are moved: * Display -> busdisplay.BusDisplay * FourWire -> fourwire.FourWire * EPaperDisplay -> epaperdisplay.EPaperDisplay * I2CDisplay -> i2cdisplaybus.I2CDisplayBus `paralleldisplay` is now `paralleldisplaybus` (and registered as `paralleldisplay` too). Bus related helpers are split out of display_core into bus_core. It is in still displayio since it is a dependency of both busdisplay and epaperdisplay. Fixes #7667
38 lines
964 B
Makefile
38 lines
964 B
Makefile
LONGINT_IMPL ?= MPZ
|
|
INTERNAL_LIBM ?= 1
|
|
USB_NUM_ENDPOINT_PAIRS = 0
|
|
|
|
CIRCUITPY_ANALOGIO ?= 1
|
|
CIRCUITPY_BLEIO ?= 1
|
|
CIRCUITPY_BUSDEVICE ?= 1
|
|
CIRCUITPY_BUSIO ?= 1
|
|
CIRCUITPY_DIGITALIO ?= 1
|
|
CIRCUITPY_DISPLAYIO ?= 1
|
|
CIRCUITPY_FRAMEBUFFERIO ?= 1
|
|
CIRCUITPY_NVM ?= 1
|
|
CIRCUITPY_PWMIO ?= 1
|
|
CIRCUITPY_RTC ?= 1
|
|
CIRCUITPY_WATCHDOG ?=1
|
|
|
|
ifeq ($(MCU_SERIES),MG24)
|
|
# Not yet implemented common-hal modules:
|
|
CIRCUITPY_AUDIOIO ?= 0
|
|
CIRCUITPY_AUDIOCORE ?= 0
|
|
CIRCUITPY_AUDIOPWMIO ?= 0
|
|
CIRCUITPY_AUDIOBUSIO ?= 0
|
|
CIRCUITPY_BITBANGIO ?= 0
|
|
CIRCUITPY_BLEIO_HCI ?= 0
|
|
CIRCUITPY_COUNTIO ?= 0
|
|
CIRCUITPY_FREQUENCYIO ?= 0
|
|
CIRCUITPY_I2CTARGET ?= 0
|
|
CIRCUITPY_KEYPAD ?= 0
|
|
CIRCUITPY_NEOPIXEL_WRITE ?= 0
|
|
CIRCUITPY_PARALLELDISPLAYBUS ?= 0
|
|
CIRCUITPY_PULSEIO ?= 0
|
|
CIRCUITPY_ROTARYIO ?= 0
|
|
CIRCUITPY_TOUCHIO ?= 0
|
|
CIRCUITPY_USB = 0
|
|
endif
|
|
|
|
CIRCUITPY_BUILD_EXTENSIONS ?= bin
|