2022-06-30 16:01:25 +10:00
|
|
|
# cmake file for Raspberry Pi Pico W
|
2023-03-13 10:40:22 +00:00
|
|
|
|
2023-08-16 13:13:01 +10:00
|
|
|
set(PICO_BOARD "pico_w")
|
|
|
|
|
2023-03-13 10:40:22 +00:00
|
|
|
# The C malloc is needed by cyw43-driver Bluetooth
|
|
|
|
set(MICROPY_C_HEAP_SIZE 4096)
|
|
|
|
|
2022-06-30 16:01:25 +10:00
|
|
|
set(MICROPY_PY_LWIP ON)
|
|
|
|
set(MICROPY_PY_NETWORK_CYW43 ON)
|
|
|
|
|
2023-03-13 10:40:22 +00:00
|
|
|
# Bluetooth
|
|
|
|
set(MICROPY_PY_BLUETOOTH ON)
|
|
|
|
set(MICROPY_BLUETOOTH_BTSTACK ON)
|
|
|
|
set(MICROPY_PY_BLUETOOTH_CYW43 ON)
|
|
|
|
|
2022-06-30 16:01:25 +10:00
|
|
|
# Board specific version of the frozen manifest
|
2023-01-27 14:17:19 +11:00
|
|
|
set(MICROPY_FROZEN_MANIFEST ${MICROPY_BOARD_DIR}/manifest.py)
|