Skip to content

Commit

Permalink
Pint: Trim some cruft from the build so it doesn't esplode.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gadgetoid committed May 3, 2024
1 parent d256b9e commit cc7a169
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion micropython/modules/micropython-pico_pint.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,33 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/../../")
set(CMAKE_C_STANDARD 11)
set(CMAKE_CXX_STANDARD 17)

include(micropython-common)
# Essential
include(pimoroni_i2c/micropython)
include(pimoroni_bus/micropython)

# Sensors & Breakouts
include(micropython-common-breakouts)

# LEDs & Matrices
include(plasma/micropython)
include(hub75/micropython)

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

# Utility
include(adcfft/micropython)

# RTC (Badger 2040W, Enviro)
if(PICO_BOARD STREQUAL "pico_w")
include(pcf85063a/micropython)
endif()

include(modules_py/modules_py)

include(pint/micropython)

# C++ Magic Memory
Expand Down

0 comments on commit cc7a169

Please sign in to comment.