All checks were successful
Build RPi Pico firmware image / Build-Firmware (push) Successful in 3m23s
Check code formatting / Check-C-Format (push) Successful in 7s
Check code formatting / Check-Python-Flake8 (push) Successful in 9s
Check code formatting / Check-Bash-Shellcheck (push) Successful in 5s
Run unit tests on host / Run-Unit-Tests (push) Successful in 8s
23 lines
575 B
CMake
23 lines
575 B
CMake
# cmake file for Raspberry Pi Pico W
|
|
|
|
set(PICO_BOARD "pico_w")
|
|
|
|
set(MICROPY_PY_LWIP ON)
|
|
set(MICROPY_PY_NETWORK_CYW43 ON)
|
|
|
|
# Bluetooth
|
|
set(MICROPY_PY_BLUETOOTH ON)
|
|
set(MICROPY_BLUETOOTH_BTSTACK ON)
|
|
set(MICROPY_PY_BLUETOOTH_CYW43 ON)
|
|
|
|
set(MICROPY_PY_BTREE ON)
|
|
|
|
# Board specific version of the frozen manifest
|
|
set(MICROPY_FROZEN_MANIFEST ${MICROPY_BOARD_DIR}/manifest.py)
|
|
|
|
set(GEN_PINS_BOARD_CSV "${CMAKE_CURRENT_LIST_DIR}/pins.csv")
|
|
set(GEN_PINS_CSV_ARG --board-csv "${GEN_PINS_BOARD_CSV}")
|
|
|
|
add_link_options("-Wl,--print-memory-usage")
|
|
set(PICO_USE_FASTEST_SUPPORTED_CLOCK 1)
|