From 1b2dae45d3512b804c9f7c67ceddffc08f5ea3c4 Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Thu, 2 Feb 2023 12:36:07 +0000 Subject: [PATCH] Cosmic Unicorn: Add config and workflow for .uf2. --- .github/workflows/micropython-picow.yml | 2 + .../micropython-picow_cosmic_unicorn.cmake | 52 +++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 micropython/modules/micropython-picow_cosmic_unicorn.cmake diff --git a/.github/workflows/micropython-picow.yml b/.github/workflows/micropython-picow.yml index 0bd65e29..8aa78944 100644 --- a/.github/workflows/micropython-picow.yml +++ b/.github/workflows/micropython-picow.yml @@ -72,6 +72,8 @@ jobs: board: PICO_W_ENVIRO - name: picow_galactic_unicorn board: PICO_W + - name: picow_cosmic_unicorn + board: PICO_W - name: picow_inky_frame board: PICO_W_INKY diff --git a/micropython/modules/micropython-picow_cosmic_unicorn.cmake b/micropython/modules/micropython-picow_cosmic_unicorn.cmake new file mode 100644 index 00000000..bf5e8e4f --- /dev/null +++ b/micropython/modules/micropython-picow_cosmic_unicorn.cmake @@ -0,0 +1,52 @@ +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}/../../") + +# 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(jpegdec/micropython) +include(qrcode/micropython/micropython) + +# Sensors & Breakouts +include(breakout_dotmatrix/micropython) +include(breakout_encoder/micropython) +include(breakout_ioexpander/micropython) +include(breakout_ltr559/micropython) +include(breakout_as7262/micropython) +include(breakout_rgbmatrix5x5/micropython) +include(breakout_matrix11x7/micropython) +include(breakout_msa301/micropython) +include(breakout_pmw3901/micropython) +include(breakout_mics6814/micropython) +include(breakout_potentiometer/micropython) +include(breakout_rtc/micropython) +include(breakout_trackball/micropython) +include(breakout_sgp30/micropython) +include(breakout_bh1745/micropython) +include(breakout_bme68x/micropython) +include(breakout_bme280/micropython) +include(breakout_bmp280/micropython) +include(breakout_icp10125/micropython) +include(breakout_scd41/micropython) +include(breakout_vl53l5cx/micropython) +include(pcf85063a/micropython) + +# Utility +include(adcfft/micropython) + +# LEDs & Matrices +include(cosmic_unicorn/micropython) + +# include(micropython-common) + +include(modules_py/modules_py)