mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-08 05:31:25 +00:00
![GUVWAF](/assets/img/avatar_default.png)
* Pico W: Initial WiFi support: connects, but freezes after a while * Update arduino-pico core to fix hang with Wi-Fi * Add `picow` to workflow since it's different from `pico` now
17 lines
519 B
INI
17 lines
519 B
INI
[env:picow]
|
|
extends = rp2040_base
|
|
board = rpipicow
|
|
board_level = extra
|
|
upload_protocol = picotool
|
|
|
|
# add our variants files to the include and src paths
|
|
build_flags = ${rp2040_base.build_flags}
|
|
-DRPI_PICO
|
|
-Ivariants/rpipicow
|
|
-DHW_SPI1_DEVICE
|
|
-L "${platformio.libdeps_dir}/${this.__env__}/BSEC2 Software Library/src/cortex-m0plus"
|
|
-fexceptions # for exception handling in MQTT
|
|
build_src_filter = ${rp2040_base.build_src_filter} +<mesh/wifi/>
|
|
lib_deps =
|
|
${rp2040_base.lib_deps}
|
|
${networking_base.lib_deps} |