Skip to content

Commit 0fea390

Browse files
committed
Pint: Trim some cruft from the build so it doesn't esplode.
1 parent 80ededb commit 0fea390

File tree

1 file changed

+27
-1
lines changed

1 file changed

+27
-1
lines changed

micropython/modules/micropython-pico_pint.cmake

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,33 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/../../")
77
set(CMAKE_C_STANDARD 11)
88
set(CMAKE_CXX_STANDARD 17)
99

10-
include(micropython-common)
10+
# Essential
11+
include(pimoroni_i2c/micropython)
12+
include(pimoroni_bus/micropython)
13+
14+
# Sensors & Breakouts
15+
include(micropython-common-breakouts)
16+
17+
# LEDs & Matrices
18+
include(plasma/micropython)
19+
include(hub75/micropython)
20+
21+
# Servos & Motors
22+
include(pwm/micropython)
23+
include(servo/micropython)
24+
include(encoder/micropython)
25+
include(motor/micropython)
26+
27+
# Utility
28+
include(adcfft/micropython)
29+
30+
# RTC (Badger 2040W, Enviro)
31+
if(PICO_BOARD STREQUAL "pico_w")
32+
include(pcf85063a/micropython)
33+
endif()
34+
35+
include(modules_py/modules_py)
36+
1137
include(pint/micropython)
1238

1339
# C++ Magic Memory

0 commit comments

Comments
 (0)