Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ GEM
jekyll (>= 3.5, < 5.0)
jekyll-feed (~> 0.9)
jekyll-seo-tag (~> 2.1)
nokogiri (1.18.3)
nokogiri (1.18.8)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
pathutil (0.16.2)
Expand All @@ -95,7 +95,7 @@ GEM
tilt (2.3.0)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
tzinfo-data (1.2025.1)
tzinfo-data (1.2025.2)
tzinfo (>= 1.0.0)
unicode-display_width (2.6.0)
wdm (0.2.0)
Expand Down
13 changes: 13 additions & 0 deletions documentation/asciidoc/computers/ai/getting-started.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,19 @@ $ sudo apt-mark unhold hailo-tappas-core hailort hailo-dkms

[tabs]
======
v4.19::
To install version 4.19 of Hailo's neural network tooling, run the following commands:
+
[source,console]
---
sudo apt install hailo-tappas-core=3.30.0-1 hailort=4.19.0-3 hailo-dkms=4.19.0-1 python3-hailort=4.19.0-2
----
+
[source,console]
----
$ sudo apt-mark hold hailo-tappas-core hailort hailo-dkms python3-hailort
----

4.18::
To install version 4.18 of Hailo's neural network tooling, run the following commands:
+
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ Records exactly the specified framerate. Accepts a nonzero integer.

==== `low-latency`

On a Pi 5, the `--low-latency` option will reduce the encoding latency, which may be beneficial for real-time streaming applications, in return for (slightly) less good coding efficiency (for example, B frames and arithmethic coding will no longer be used).
On a Pi 5, the `--low-latency` option will reduce the encoding latency, which may be beneficial for real-time streaming applications, in return for (slightly) less good coding efficiency (for example, B frames and arithmetic coding will no longer be used).

==== `sync`

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,14 +219,7 @@ dtoverlay=enc28j60

Reboot with `sudo reboot`.

You should now see an `rtc0` entry in `/dev`. Run the following command to view the hardware clock time:

[source,console]
----
$ sudo hwclock
----

You should also have Ethernet connectivity. Run the following command to test your connectivity:
If you now run `ifconfig` you should see an aditional `eth<n>` entry for the ENC28J60 NIC. You should also have Ethernet connectivity. Run the following command to test your connectivity:

[source,console]
----
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ Here, we describe some common ways to improve the security of your Raspberry Pi.

Prefixing a command with `sudo` runs it as a superuser. By default, that does not need a password. However, you can make your Raspberry Pi more secure by requiring a password for all commands run with `sudo`.

To force `sudo` to require a password, edit the `nopasswd` sudoers file for your user account, replacing the `<username>` placeholder in the file name with your username:
To force `sudo` to require a password, edit the `010_pi-nopasswd` sudoers file:

[source,console]
----
$ sudo visudo /etc/sudoers.d/010_<username>-nopasswd
$ sudo visudo /etc/sudoers.d/010_pi-nopasswd
----

Change the `<username>` entry to the following, replacing `<username>` with your username:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ The number of times that SD boot will be retried after failure before moving to
Default: `0`

[[SD_QUIRKS]]
==== `SD_QURIKS`
==== `SD_QUIRKS`

The `SD_QUIRKS` property provides a set of options to support device bringup and workaround interoperability issues.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

* Browsers intercept certain keys and key combinations. As a result, you can't type these keys into your Connect window. Screen sharing includes a toolbar to simulate some of the most popular intercepted keys.

* Upgrading `rpi-connect` and `rpi-connect-lite` using Connect is not supported. The upgrade process will terminate all remote shell sessions and drop all connections.
* Upgrading `rpi-connect` and `rpi-connect-lite` using Connect's remote shell is not supported. The upgrade process will terminate all remote shell sessions and drop all connections. To upgrade Connect in a remote shell session, use a tool like `screen` or `tmux` to ensure the process continues uninterrupted after your connection is closed.

* To upgrade from version 1 to version 2, you must first upgrade the package you currently have installed before switching between `rpi-connect` and `rpi-connect-lite`. This ensures that Connect's services properly migrate to the version 2 format. If you currently have `rpi-connect` installed, run the following command:
+
Expand Down
2 changes: 1 addition & 1 deletion lib/doxygentoasciidoc
Loading