From 0481f38f29d1c0121631b00216d2311ccb817b07 Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Sat, 1 Feb 2025 08:08:15 +0000 Subject: [PATCH] Enable ulab. --- boards/usermod-common.cmake | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/boards/usermod-common.cmake b/boards/usermod-common.cmake index a8a58aa..0aee380 100644 --- a/boards/usermod-common.cmake +++ b/boards/usermod-common.cmake @@ -38,8 +38,14 @@ include(adcfft/micropython) # LEDs & Matrices include(plasma/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() + # Servos & Motors include(pwm/micropython) include(servo/micropython)