From b8be5c5733293f797db5d9c697defcfd4d9a1836 Mon Sep 17 00:00:00 2001 From: nate contino Date: Sun, 15 Dec 2024 04:00:04 +0000 Subject: [PATCH 1/3] fix link in CONTRIBUTING.md --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4788ba71d..110258458 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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 From 75a85659a9e835e1f1b287532cacdadd978a4a43 Mon Sep 17 00:00:00 2001 From: Guillaume Rossolini Date: Sun, 15 Dec 2024 13:23:58 +0100 Subject: [PATCH 2/3] Update host-wireless-network.adoc This change makes it more obvious where the SSID is configured in this one-liner (removed ambiguity with con-name). Matches the style of the other example a few paragraphs above (see "Enable hotspot"), --- .../computers/configuration/host-wireless-network.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/asciidoc/computers/configuration/host-wireless-network.adoc b/documentation/asciidoc/computers/configuration/host-wireless-network.adoc index 285edd2a1..9bd7dcc1e 100644 --- a/documentation/asciidoc/computers/configuration/host-wireless-network.adoc +++ b/documentation/asciidoc/computers/configuration/host-wireless-network.adoc @@ -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 `` 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 `` and `` 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 wifi-sec.key-mgmt wpa-psk \ wifi-sec.proto rsn wifi-sec.pairwise ccmp \ wifi-sec.psk ---- From 10a45df22e32076022c4a4775a2c014ecde4b0d0 Mon Sep 17 00:00:00 2001 From: nate contino Date: Mon, 16 Dec 2024 14:11:27 +0000 Subject: [PATCH 3/3] Embiggen GPIO pics --- .../asciidoc/computers/raspberry-pi/gpio-on-raspberry-pi.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/asciidoc/computers/raspberry-pi/gpio-on-raspberry-pi.adoc b/documentation/asciidoc/computers/raspberry-pi/gpio-on-raspberry-pi.adoc index 4c094d8da..e74ec7baa 100644 --- a/documentation/asciidoc/computers/raspberry-pi/gpio-on-raspberry-pi.adoc +++ b/documentation/asciidoc/computers/raspberry-pi/gpio-on-raspberry-pi.adoc @@ -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.