Skip to content

Commit

Permalink
Merge pull request #3989 from raspberrypi/develop
Browse files Browse the repository at this point in the history
Release latest changes to production
  • Loading branch information
nathan-contino authored Dec 16, 2024
2 parents a58bf2b + 10a45df commit 5d60462
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The Raspberry Pi Documentation website is built from Asciidoc source using:
* [jekyll-asciidoc](https://github.com/asciidoctor/jekyll-asciidoc)
* Python

The website automatically deploys to [raspberrypi.com/documentation](raspberrypi.com/documentation) using GitHub Actions when new commits appear in the `master` branch.
The website automatically deploys to [www.raspberrypi.com/documentation](https://www.raspberrypi.com/documentation) using GitHub Actions when new commits appear in the `master` branch.

## Contribute

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,13 @@ Finally, add your wireless hotspot connection to the bridge. You can either add
$ sudo nmcli connection modify 'Hotspot' master bridge0
----

* If you have not yet created a wireless hotspot connection, create a new interface and add it to the bridge with a single command, replacing the `<hotspot-password>` placeholder with a password of your choice:
* If you have not yet created a wireless hotspot connection, create a new interface and add it to the bridge with a single command, replacing the `<hotspot-ssid>` and `<hotspot-password>` placeholders with a network name and password of your choice, respectively:
+
[source,console?prompt=$]
----
$ sudo nmcli connection add con-name 'Hotspot' \
ifname wlan0 type wifi slave-type bridge master bridge0 \
wifi.mode ap wifi.ssid Hotspot wifi-sec.key-mgmt wpa-psk \
wifi.mode ap wifi.ssid <hotspot-ssid> wifi-sec.key-mgmt wpa-psk \
wifi-sec.proto rsn wifi-sec.pairwise ccmp \
wifi-sec.psk <hotspot-password>
----
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ You can find a 40-pin GPIO (general-purpose input/output) header on all current

NOTE: The header is unpopulated (has no headers) on Zero and Pico devices that lack the "H" suffix.

image::images/GPIO-Pinout-Diagram-2.png[alt="GPIO pinout diagram",width="60%"]
image::images/GPIO-Pinout-Diagram-2.png[alt="GPIO pinout diagram",width="100%"]

General Purpose I/O (GPIO) pins can be configured as either general-purpose input, general-purpose output, or as one of up to six special alternate settings, the functions of which are pin-dependent.

image::images/GPIO.png[alt="GPIO layout",width="60%"]
image::images/GPIO.png[alt="GPIO layout",width="100%"]

NOTE: The GPIO pin numbering scheme is not in numerical order. GPIO pins 0 and 1 are present on the board (physical pins 27 and 28), but are reserved for advanced use.

Expand Down

0 comments on commit 5d60462

Please sign in to comment.