Skip to content

Commit 2395743

Browse files
Remove some references to Pico W (#580)
Refer to Wifi / Bluetooth support instead.
1 parent 3fc5ce7 commit 2395743

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ App| Description
2424
---|----------------------------------------------------------------------------|---
2525
[hello_serial](hello_world/serial) | The obligatory Hello World program for Pico (Output over serial version) |
2626
[hello_usb](hello_world/usb) | The obligatory Hello World program for Pico (Output over USB version) | https://rptl.io/pico-hello-usb
27-
[blink](blink) | Blink an LED on and off. Works on both boards with regular LEDs and Pico W | https://rptl.io/pico-blink
28-
[blink_simple](blink_simple) | Blink an LED on and off. Does not work on Pico W. | https://rptl.io/pico-blink
29-
[picow_blink](pico_w/wifi/blink) | Blinks the Pico W on-board LED (which is connected via the WiFi chip). | http://rptl.io/pico-w-blink
27+
[blink](blink) | Blink a LED on and off. Works on both boards with regular LEDs and boards like Pico W where the led is connected via the Wi-Fi chip | https://rptl.io/pico-blink
28+
[blink_simple](blink_simple) | Blink a LED on and off. Does not work on boards like Pico W where the led is connected via the Wi-Fi chip. | https://rptl.io/pico-blink
29+
[picow_blink](pico_w/wifi/blink) | Blinks the on-board LED on boards like Pico W where the led is connected via the Wi-Fi chip. | http://rptl.io/pico-w-blink
3030

3131
### ADC
3232

@@ -170,9 +170,9 @@ App|Description
170170
[blinky](picoboard/blinky) | Blink "hello, world" in Morse code on Pico's LED
171171
[button](picoboard/button) | Use Pico's BOOTSEL button as a regular button input, by temporarily suspending flash access.
172172

173-
### Pico W Networking
173+
### Pico Networking
174174

175-
These examples are for the Pico W, and are only available for `PICO_BOARD=pico_w`
175+
These networking examples are only available if Wi-Fi is supported by the board.
176176

177177
App|Description
178178
---|---
@@ -194,7 +194,7 @@ App|Description
194194

195195
#### FreeRTOS examples
196196

197-
These are examples of integrating Pico W networking under FreeRTOS, and require you to set the `FREERTOS_KERNEL_PATH`
197+
These are examples of integrating Wi-Fi networking under FreeRTOS, and require you to set the `FREERTOS_KERNEL_PATH`
198198
to point to the FreeRTOS Kernel. See https://github.com/FreeRTOS/FreeRTOS-Kernel
199199

200200
App|Description
@@ -208,9 +208,9 @@ App|Description
208208
[pico_freertos_httpd_sys](pico_w/wifi/freertos/httpd) | Runs a LWIP HTTP server test app under FreeRTOS in NO_SYS=0 (i.e. full FreeRTOS integration) mode.
209209
[picow_freertos_http_client_sys](pico_w/wifi/freertos/http_client) | Demonstrates how to make a https request in NO_SYS=0 (i.e. full FreeRTOS integration)
210210

211-
### Pico W Bluetooth
211+
### Pico Bluetooth
212212

213-
These examples are for the Pico W, and are only available for `PICO_BOARD=pico_w`.
213+
These Bluetooth examples are only available for boards that support Bluetooth.
214214
They are examples from the Blue Kitchen Bluetooth stack, see [here](https://bluekitchen-gmbh.com/btstack/#examples/examples/index.html) for a full description.
215215

216216
By default, the Bluetooth examples are only built in one "mode" only (*background*, *poll*, or *freertos*), with the

adc/read_vsys/power_status.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* \brief Get power source
1212
*
1313
* Returns whether battery powered
14-
* \note On Pico W must have called cyw43_arch_init
14+
* \note On boards that support Wi-Fi you must have called cyw43_arch_init first
1515
*
1616
* \param battery_powered True if powered by battery, False if powered by USB or another means
1717
* \return Zero if the battery status can be determined, an error code otherwise \see pico_error_codes

pico_w/bt/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Pico W Bluetooth Examples
1+
# Pico Bluetooth Examples
22

33
The source for most of the Bluetooth examples is stored in `pico-sdk/lib/btstack/example`.
44
There's a standalone example in `pico-examples/pico_w/bt/standalone`.

pico_w/wifi/access_point/picow_access_point.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#define POLL_TIME_S 5
2121
#define HTTP_GET "GET"
2222
#define HTTP_RESPONSE_HEADERS "HTTP/1.1 %d OK\nContent-Length: %d\nContent-Type: text/html; charset=utf-8\nConnection: close\n\n"
23-
#define LED_TEST_BODY "<html><body><h1>Hello from Pico W.</h1><p>Led is %s</p><p><a href=\"?led=%d\">Turn led %s</a></body></html>"
23+
#define LED_TEST_BODY "<html><body><h1>Hello from Pico.</h1><p>Led is %s</p><p><a href=\"?led=%d\">Turn led %s</a></body></html>"
2424
#define LED_PARAM "led=%d"
2525
#define LED_TEST "/ledtest"
2626
#define LED_GPIO 0

0 commit comments

Comments
 (0)