2023-04-24 15:05:21 +01:00
|
|
|
# cmake file for Pimoroni Enviro with Raspberry Pi Pico W
|
2022-08-02 14:28:43 +01:00
|
|
|
set(MICROPY_BOARD PICO_W)
|
|
|
|
|
2023-06-15 11:15:35 +01:00
|
|
|
# The C malloc is needed by cyw43-driver Bluetooth and Pimoroni Pico modules
|
|
|
|
set(MICROPY_C_HEAP_SIZE 4096)
|
|
|
|
|
2022-08-02 14:28:43 +01:00
|
|
|
set(MICROPY_PY_LWIP ON)
|
|
|
|
set(MICROPY_PY_NETWORK_CYW43 ON)
|
2023-04-24 15:05:21 +01:00
|
|
|
|
2023-06-15 11:15:35 +01:00
|
|
|
# Bluetooth
|
|
|
|
set(MICROPY_PY_BLUETOOTH ON)
|
|
|
|
set(MICROPY_BLUETOOTH_BTSTACK ON)
|
|
|
|
set(MICROPY_PY_BLUETOOTH_CYW43 ON)
|
2023-05-02 16:17:47 +01:00
|
|
|
|
2023-06-15 11:15:35 +01:00
|
|
|
# Board specific version of the frozen manifest
|
|
|
|
set(MICROPY_FROZEN_MANIFEST ${MICROPY_BOARD_DIR}/manifest.py)
|