Skip to content

Commit

Permalink
Merge pull request #12 from pimoroni/patch-ulab
Browse files Browse the repository at this point in the history
Enable ulab.
  • Loading branch information
Gadgetoid authored Feb 1, 2025
2 parents 9c2b991 + 87759fa commit 6cbfc44
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions boards/usermod-common.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ include(pimoroni_i2c/micropython)
include(pimoroni_bus/micropython)

# Pico Graphics Essential
include(hershey_fonts/micropython)
include(bitmap_fonts/micropython)
include(picographics/micropython)

Expand All @@ -36,15 +35,24 @@ include(micropython-common-breakouts)
# Utility
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
include(plasma/micropython)
include(${UNICORN}_unicorn/micropython)

# Servos & Motors
include(pwm/micropython)
include(servo/micropython)
include(encoder/micropython)
include(motor/micropython)
endif()

# Still required for version.py
include(modules_py/modules_py)
Expand Down

0 comments on commit 6cbfc44

Please sign in to comment.