-
Notifications
You must be signed in to change notification settings - Fork 501
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MicroPython: Add Pico2 Inky module config.
- Loading branch information
Showing
1 changed file
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
include_directories(${CMAKE_CURRENT_LIST_DIR}/../../) | ||
|
||
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}") | ||
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/../") | ||
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/../../") | ||
|
||
set(CMAKE_C_STANDARD 11) | ||
set(CMAKE_CXX_STANDARD 17) | ||
|
||
# Essential | ||
include(pimoroni_i2c/micropython) | ||
include(pimoroni_bus/micropython) | ||
|
||
# Pico Graphics Essential | ||
include(hershey_fonts/micropython) | ||
include(bitmap_fonts/micropython) | ||
include(picographics/micropython) | ||
|
||
# Pico Graphics Extra | ||
include(pngdec/micropython) | ||
include(jpegdec/micropython) | ||
include(qrcode/micropython/micropython) | ||
|
||
# Sensors & Breakouts | ||
include(micropython-common-breakouts) | ||
include(pcf85063a/micropython) | ||
|
||
# Utility | ||
include(adcfft/micropython) | ||
include(wakeup/micropython) | ||
|
||
# Configure wakeup for Inky Frame | ||
target_compile_definitions(usermod_wakeup INTERFACE | ||
-DWAKEUP_HAS_RTC=1 | ||
-DWAKEUP_HAS_SHIFT_REGISTER=1 | ||
-DWAKEUP_PIN_MASK=0b01000100 | ||
-DWAKEUP_PIN_DIR=0b01000100 | ||
-DWAKEUP_PIN_VALUE=0b01000100 | ||
) | ||
|
||
# LEDs & Matrices | ||
include(plasma/micropython) | ||
|
||
# Servos & Motors | ||
include(pwm/micropython) | ||
include(servo/micropython) | ||
include(encoder/micropython) | ||
include(motor/micropython) | ||
|
||
include(modules_py/modules_py) | ||
|
||
copy_module(inky_frame.py) | ||
|
||
# C++ Magic Memory | ||
include(cppmem/micropython) | ||
|
||
# Disable build-busting C++ exceptions | ||
include(micropython-disable-exceptions) |