You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: documentation/asciidoc/accessories/touch-display-2/about.adoc
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -81,7 +81,7 @@ To set the screen orientation on a device that lacks a desktop environment, edit
81
81
82
82
[source,ini]
83
83
----
84
-
video=DSI-1:1280x720@60,rotate=<rotation-value>
84
+
video=DSI-1:720x1280@60,rotate=<rotation-value>
85
85
----
86
86
87
87
Replace the `<rotation-value>` placeholder with one of the following values, which correspond to the degree of rotation relative to the default on your display:
@@ -103,10 +103,10 @@ The `vc4-kms-dsi-ili9881-7inch` overlay supports the following options:
Copy file name to clipboardExpand all lines: documentation/asciidoc/microcontrollers/microcontroller_docs.adoc
+7-3Lines changed: 7 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,13 +28,17 @@ https://datasheets.raspberrypi.com/pico/pico-datasheet.pdf[Raspberry Pi Pico Dat
28
28
29
29
https://datasheets.raspberrypi.com/pico/getting-started-with-pico.pdf[Getting started with Raspberry Pi Pico]:: C/{cpp} development with Raspberry Pi Pico and other RP2040-based microcontroller boards
30
30
31
+
=== Raspberry Pi Pico 2 W
32
+
33
+
https://datasheets.raspberrypi.com/picow/pico-2-w-datasheet.pdf[Raspberry Pi Pico 2 W Datasheet]:: An RP2350-based microcontroller board with wireless
34
+
35
+
https://datasheets.raspberrypi.com/picow/connecting-to-the-internet-with-pico-w.pdf[Connecting to the Internet with Raspberry Pi Pico W-series]:: Getting Raspberry Pi Pico W-series devices online with C/{cpp} or MicroPython
36
+
31
37
=== Raspberry Pi Pico W
32
38
33
39
https://datasheets.raspberrypi.com/picow/pico-w-datasheet.pdf[Raspberry Pi Pico W Datasheet]:: An RP2040-based microcontroller board with wireless
34
40
35
-
https://datasheets.raspberrypi.com/picow/connecting-to-the-internet-with-pico-w.pdf[Connecting to the Internet with Raspberry Pi Pico W]:: Getting Raspberry Pi Pico W online with C/{cpp} or MicroPython
36
-
37
-
NOTE: Documentation introducing working with Wi-Fi and Bluetooth on Raspberry Pi Pico W with C/{cpp} or MicroPython is presented in the https://datasheets.raspberrypi.com/picow/connecting-to-the-internet-with-pico-w.pdf[Connecting to the Internet with Raspberry Pi Pico W] book.
41
+
https://datasheets.raspberrypi.com/picow/connecting-to-the-internet-with-pico-w.pdf[Connecting to the Internet with Raspberry Pi Pico W-series]:: Getting Raspberry Pi Pico W-series devices online with C/{cpp} or MicroPython
NOTE: More information on Fritzing is available on the https://fritzing.org/[fritzing.org] website.
53
53
54
+
[[pico2w-technical-specification]]
55
+
=== Raspberry Pi Pico 2 W
56
+
57
+
Raspberry Pi Pico 2 W adds on-board single-band 2.4GHz wireless interfaces (802.11n) using the Infineon CYW43439 to the Pico 2 hardware. The on-board 2.4GHz wireless interface has the following features:
58
+
59
+
* Wireless (802.11n), single-band (2.4 GHz)
60
+
* WPA3
61
+
* Soft access point supporting up to four clients
62
+
* Bluetooth 5.2
63
+
** Support for Bluetooth LE Central and Peripheral roles
64
+
** Support for Bluetooth Classic
65
+
66
+
The onboard antenna is licensed from ABRACON (formerly ProAnt). The wireless interface is connected via
67
+
SPI to the xref:silicon.adoc#rp2350[RP2350] microcontroller.
68
+
69
+
Due to pin limitations, some of the wireless interface pins are shared. The CLK is shared with VSYS monitor, so only
70
+
when there isn't an SPI transaction in progress can VSYS be read via the ADC. The Infineon CYW43439 DIN/DOUT and
71
+
IRQ all share one pin on the RP2350. Only when an SPI transaction isn't in progress is it suitable to check for IRQs. The interface typically runs at 33MHz.
72
+
73
+
For best wireless performance, position the antenna in free space. For instance, metal underneath or nearby the
74
+
antenna can reduce performance both in terms of gain and bandwidth. Adding grounded metal to the sides of the
75
+
antenna can improve the antenna's bandwidth.
76
+
77
+
`libcyw43` is licensed for non-commercial use. However, Pico 2 W users, and anyone else who builds their product around RP2350 and CYW43439, benefit from a free https://github.com/georgerobotics/cyw43-driver/blob/195dfcc10bb6f379e3dea45147590db2203d3c7b/LICENSE.RP[commercial-use license].
78
+
79
+
In addition to the https://github.com/bluekitchen/btstack/blob/master/LICENSE[standard BTstack licensing] terms, a https://github.com/raspberrypi/pico-sdk/blob/master/src/rp2_common/pico_btstack/LICENSE.RP[supplemental licence] covers commercial use of BTstack with Raspberry Pi Pico 2 W.
@@ -103,7 +140,7 @@ Raspberry Pi Pico W adds on-board single-band 2.4GHz wireless interfaces (802.11
103
140
** Support for Bluetooth LE Central and Peripheral roles
104
141
** Support for Bluetooth Classic
105
142
106
-
The antenna is an onboard antenna licensed from ABRACON (formerly ProAnt). The wireless interface is connected via
143
+
The antenna is an onboard antenna licensed from ABRACON (formerly ProAnt). The CYW43439 wireless chip is connected via
107
144
SPI to the xref:silicon.adoc#rp2040[RP2040] microcontroller.
108
145
109
146
Due to pin limitations, some of the wireless interface pins are shared. The CLK is shared with VSYS monitor, so only
@@ -115,11 +152,9 @@ For best wireless performance, the antenna should be in free space. For instance
115
152
antenna can reduce its performance both in terms of gain and bandwidth. Adding grounded metal to the sides of the
116
153
antenna can improve the antenna's bandwidth.
117
154
118
-
NOTE: The CYW43439 wireless chip is connected via SPI to the RP2040.The CYW43439 supports both 802.11 wireless and Bluetooth over this interface.
119
-
120
-
IMPORTANT: By default `libcyw43` is licensed for non-commercial use, but Pico W users, and anyone else who builds their product around RP2040 and CYW43439, benefit from a free https://github.com/georgerobotics/cyw43-driver/blob/195dfcc10bb6f379e3dea45147590db2203d3c7b/LICENSE.RP[commercial-use license].
155
+
`libcyw43` is licensed for non-commercial use. However, Pico W users, and anyone else who builds their product around RP2040 and CYW43439, benefit from a free https://github.com/georgerobotics/cyw43-driver/blob/195dfcc10bb6f379e3dea45147590db2203d3c7b/LICENSE.RP[commercial-use license].
121
156
122
-
IMPORTANT: In addition to the https://github.com/bluekitchen/btstack/blob/master/LICENSE[standard BTstack licensing] terms, a https://github.com/raspberrypi/pico-sdk/blob/master/src/rp2_common/pico_btstack/LICENSE.RP[supplemental licence] which covers commercial use of BTstack with Raspberry Pi Pico W or Raspberry Pi Pico WH is provided.
157
+
In addition to the https://github.com/bluekitchen/btstack/blob/master/LICENSE[standard BTstack licensing] terms, a https://github.com/raspberrypi/pico-sdk/blob/master/src/rp2_common/pico_btstack/LICENSE.RP[supplemental licence] covers commercial use of BTstack with Raspberry Pi Pico W or Raspberry Pi Pico WH.
0 commit comments