Skip to content

Commit 6c70c6d

Browse files
committed
Fix issues
1 parent e53235c commit 6c70c6d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,8 @@ App|Description
170170
---|---
171171
[picow_access_point](pico_w/wifi/access_point) | Starts a WiFi access point, and fields DHCP requests.
172172
[picow_blink](pico_w/wifi/blink) | Blinks the on-board LED (which is connected via the WiFi chip).
173-
[picow_blink_slow_clock](pico_w/wifi/blink_slow_clock) | Blinks the on-board LED (which is connected via the WiFi chip) with a slower system clock to show how to reconfigure communication with the WiFi chip under those circumstances
174-
[picow_blink_fast_clock](pico_w/wifi/blink_slow_clock) | Blinks the on-board LED (which is connected via the WiFi chip) with a faster system clock to show how to reconfigure communication with the WiFi chip under those circumstances
173+
[picow_blink_slow_clock](pico_w/wifi/blink) | Blinks the on-board LED (which is connected via the WiFi chip) with a slower system clock to show how to reconfigure communication with the WiFi chip at run time under those circumstances
174+
[picow_blink_fast_clock](pico_w/wifi/blink) | Blinks the on-board LED (which is connected via the WiFi chip) with a faster system clock to show how to reconfigure communication with the WiFi chip at build time under those circumstances
175175
[picow_iperf_server](pico_w/wifi/iperf) | Runs an "iperf" server for WiFi speed testing.
176176
[picow_ntp_client](pico_w/wifi/ntp_client) | Connects to an NTP server to fetch and display the current time.
177177
[picow_tcp_client](pico_w/wifi/tcp_client) | A simple TCP client. You can run [python_test_tcp_server.py](pico_w/wifi/python_test_tcp/python_test_tcp_server.py) for it to connect to.

pico_w/wifi/blink/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pico_add_extra_outputs(picow_blink)
1212
# add url via pico_set_program_url
1313
example_auto_set_url(picow_blink)
1414

15-
# This version should behave exactly the same, but it runs the sys clock slowly.
15+
# This version should behave exactly the same, but it runs the sys clock slower and changes the pio pio clock divisor for the cyw43 driver at run time.
1616
add_executable(picow_blink_slow_clock
1717
picow_blink_slow_clock.c
1818
)
@@ -32,7 +32,7 @@ pico_add_extra_outputs(picow_blink_slow_clock)
3232
# add url via pico_set_program_url
3333
example_auto_set_url(picow_blink_slow_clock)
3434

35-
# This version should behave exactly the same, but it runs the sys clock slowly.
35+
# This version should behave exactly the same, but it runs the sys clock faster and changes the pio pio clock divisor for the cyw43 driver at build time.
3636
add_executable(picow_blink_fast_clock
3737
picow_blink_fast_clock.c
3838
)
@@ -44,7 +44,7 @@ target_link_libraries(picow_blink_fast_clock
4444
# This requires us to modify the pio divisor to successfully communicate with the cyw43 chip
4545
target_compile_definitions(picow_blink_fast_clock PRIVATE
4646
CYW43_PIO_CLOCK_DIV_INT=4
47-
CYW43_PIO_CLOCK_DIV_FRAC=0
47+
CYW43_PIO_CLOCK_DIV_FRAC8=0
4848
)
4949

5050
# create map/bin/hex file etc.

0 commit comments

Comments
 (0)