20 lines
693 B
Makefile
20 lines
693 B
Makefile
USB_VID = 0x239A
|
|
USB_PID = 0x8036
|
|
USB_PRODUCT = "PyPortal"
|
|
USB_MANUFACTURER = "Adafruit Industries LLC"
|
|
|
|
CHIP_VARIANT = SAMD51J20A
|
|
CHIP_FAMILY = samd51
|
|
|
|
QSPI_FLASH_FILESYSTEM = 1
|
|
EXTERNAL_FLASH_DEVICES = "W25Q64JVxQ, GD25Q64C"
|
|
LONGINT_IMPL = MPZ
|
|
|
|
# Include these Python libraries in firmware.
|
|
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_PortalBase
|
|
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Requests
|
|
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_ESP32SPI
|
|
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_NeoPixel
|
|
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Display_Text
|
|
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_FakeRequests
|