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
15
15
pico_cyw43_arch_lwip_threadsafe_background
16
16
pico_stdlib
17
17
)
18
-
18
+ # You can change the address below to change the address of the access point
19
+ pico_configure_ip4_address (picow_access_point_background PRIVATE
20
+ CYW43_DEFAULT_IP_AP_ADDRESS 192.168.4.1
21
+ )
19
22
pico_add_extra_outputs (picow_access_point_background )
20
23
21
24
add_executable (picow_access_point_poll
@@ -33,4 +36,8 @@ target_link_libraries(picow_access_point_poll
33
36
pico_cyw43_arch_lwip_poll
34
37
pico_stdlib
35
38
)
39
+ # You can change the address below to change the address of the access point
40
+ pico_configure_ip4_address (picow_access_point_poll PRIVATE
41
+ CYW43_DEFAULT_IP_AP_ADDRESS 192.168.4.1
42
+ )
36
43
pico_add_extra_outputs (picow_access_point_poll )
You can’t perform that action at this time.
0 commit comments