1
0
mirror of https://github.com/danbee/unicorn synced 2026-06-20 22:52:22 +00:00

Merge pull request #12 from pimoroni/patch-ulab

Enable ulab.
This commit is contained in:
Philip Howard 2025-02-01 19:56:35 +00:00 committed by GitHub
commit 6cbfc44773
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -21,7 +21,6 @@ include(pimoroni_i2c/micropython)
include(pimoroni_bus/micropython) include(pimoroni_bus/micropython)
# Pico Graphics Essential # Pico Graphics Essential
include(hershey_fonts/micropython)
include(bitmap_fonts/micropython) include(bitmap_fonts/micropython)
include(picographics/micropython) include(picographics/micropython)
@ -36,15 +35,24 @@ include(micropython-common-breakouts)
# Utility # Utility
include(adcfft/micropython) include(adcfft/micropython)
# Unicorn driver. Note: The UNICORN var must be set in mpconfigboard.cmake
include(${UNICORN}_unicorn/micropython)
# Must call `enable_ulab()` to enable
include(micropython-common-ulab)
enable_ulab()
# These do not fit on the 2MB RP2040 Pico W
if(PICO_PLATFORM EQUAL "rp2350-arm-s")
# LEDs & Matrices # LEDs & Matrices
include(plasma/micropython) include(plasma/micropython)
include(${UNICORN}_unicorn/micropython)
# Servos & Motors # Servos & Motors
include(pwm/micropython) include(pwm/micropython)
include(servo/micropython) include(servo/micropython)
include(encoder/micropython) include(encoder/micropython)
include(motor/micropython) include(motor/micropython)
endif()
# Still required for version.py # Still required for version.py
include(modules_py/modules_py) include(modules_py/modules_py)