File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,10 @@ target_link_libraries(picow_access_point_background
1515 pico_cyw43_arch_lwip_threadsafe_background
1616 pico_stdlib
1717 )
18-
18+ # You can change the address below to change the address of the access point
19+ pico_set_ip4_address(picow_access_point_background PRIVATE
20+ CYW43_DEFAULT_IP_AP_ADDRESS 192.168.4.1
21+ )
1922pico_add_extra_outputs(picow_access_point_background)
2023
2124add_executable (picow_access_point_poll
@@ -33,4 +36,8 @@ target_link_libraries(picow_access_point_poll
3336 pico_cyw43_arch_lwip_poll
3437 pico_stdlib
3538 )
39+ # You can change the address below to change the address of the access point
40+ pico_set_ip4_address(picow_access_point_poll PRIVATE
41+ CYW43_DEFAULT_IP_AP_ADDRESS 192.168.4.1
42+ )
3643pico_add_extra_outputs(picow_access_point_poll)
You can’t perform that action at this time.
0 commit comments