Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,7 @@ App|Description
[picow_http_client_verify](pico_w/wifi/http_client) | Demonstrates how to make a https request with server authentication.
[picow_mqtt_client](pico_w/wifi/mqtt) | Demonstrates how to implement a MQTT client application.
[picow_ota_update](pico_w/wifi/ota_update) | A minimal OTA update server (RP235x only). See the separate [README](pico_w/wifi/ota_update/README.md) for more details.
[picow_router_solicit](pico_w/wifi/router_solicit) | Demonstrates how to use WiFi without LwIP by sending an IPv6 router solicitation.

#### FreeRTOS Networking

Expand Down
1 change: 1 addition & 0 deletions pico_w/wifi/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ else()
add_subdirectory_exclude_platforms(udp_beacon)
add_subdirectory_exclude_platforms(http_client)
add_subdirectory_exclude_platforms(mqtt)
add_subdirectory_exclude_platforms(router_solicit)

if (NOT TARGET pico_mbedtls)
message("Skipping tls_client and ota_update examples as Mbed TLS is not available")
Expand Down
12 changes: 12 additions & 0 deletions pico_w/wifi/router_solicit/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
add_executable(picow_router_solicit
router_solicit.c
)
target_link_libraries(picow_router_solicit
pico_stdlib
pico_cyw43_arch_none
)
target_compile_definitions(picow_router_solicit PRIVATE
WIFI_SSID=\"${WIFI_SSID}\"
WIFI_PASSWORD=\"${WIFI_PASSWORD}\"
)
pico_add_extra_outputs(picow_router_solicit)
Loading
Loading