Skip to content

Publish latest changes #4150

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Jul 29, 2025
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
20 changes: 10 additions & 10 deletions documentation/asciidoc/accessories/ai-camera/model-conversion.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -26,21 +26,21 @@ The Edge-MDT package takes a parameter to select between installing the PyTorch

[tabs]
======
TensorFlow::
PyTorch::
+
[source,console]
----
$ pip install edge-mdt[tf]
$ pip install edge-mdt[pt]
----
+
TIP: Always use the same version of TensorFlow you used to compress your model.

PyTorch::
TensorFlow::
+
[source,console]
----
$ pip install edge-mdt[pt]
$ pip install edge-mdt[tf]
----
+
TIP: Always use the same version of TensorFlow you used to compress your model.
======

If you need to install both packages, use two separate Python virtual environments. This prevents TensorFlow and PyTorch from causing conflicts with each other.
Expand All @@ -62,18 +62,18 @@ To convert a model model:

[tabs]
======
TensorFlow::
PyTorch::
+
[source,console]
----
$ imxconv-tf -i <compressed Keras model> -o <output folder>
$ imxconv-pt -i <compressed ONNX model> -o <output folder>
----

PyTorch::
TensorFlow::
+
[source,console]
----
$ imxconv-pt -i <compressed ONNX model> -o <output folder>
$ imxconv-tf -i <compressed Keras model> -o <output folder>
----
======

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ If appropriate then the following are also used:

=== DAC PRO, DAC{plus}, DigiAMP{plus}, Codec Zero

image::images/pin_table_new.jpg[width="80%"]
image::images/all_audio_boards_gpio_pinouts.png[width="80%"]

The DAC PRO, DAC{plus} and DigiAMP{plus} re-expose the Raspberry Pi signals, allowing additional sensors and peripherals
to be added easily. Please note that some signals are for exclusive use (I2S and EEPROM) by some
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ To build `rpicam-apps` without first rebuilding `libcamera` and `libepoxy`, inst

[source,console]
----
$ sudo apt install -y libcamera-dev libepoxy-dev libjpeg-dev libtiff5-dev libpng-dev
$ sudo apt install -y libcamera-dev libepoxy-dev libjpeg-dev libtiff5-dev libpng-dev libopencv-dev
----

TIP: If you do not need support for the GLES/EGL preview window, omit `libepoxy-dev`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ If a Raspberry Pi fails to boot for some reason, or has to shut down, in many ca
| 10
| In HALT state

| 1
| 2
| SD card overcurrent detected

| 2
| 1
| Partition not FAT
Expand Down
2 changes: 1 addition & 1 deletion documentation/asciidoc/computers/configuration/users.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ To grant the new user necessary permissions, like `sudo`, run the following comm

[source,console]
----
$ sudo usermod -a -G adm,dialout,cdrom,sudo,audio,video,plugdev,games,users,input,netdev,gpio,i2c,spi <username>
$ sudo usermod -a -G adm,dialout,cdrom,sudo,audio,video,plugdev,games,users,input,render,netdev,lpadmin,gpio,i2c,spi <username>
----

To check that the permissions were successfully granted, run the following command, replacing the `<username>` placeholder with the username for the new user:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ As the temperature of the Raspberry Pi 5 increases, the fan reacts in the follow

Temperature decreases use the same mapping with a 5°C **hysteresis**; fan speed decreases when the temperature drops to 5°C below each of the above thresholds.

NOTE: The temperature, hysteresis and speed figures given above can be adjusted by using the various `fan_tempN`, `fan_tempN_hyst` and `fan_tempN_speed` dtoverlay settings (where `N` is 0, 1, 2 or 3). See https://github.com/raspberrypi/linux/blob/rpi-6.12.y/arch/arm/boot/dts/overlays/README[the overlays README] for full details. For example, adding `dtparam=fan_temp0=55000` to `/boot/firmware/config.txt` will cause the fan to remain off until the Raspberry Pi 5's temperature reaches 55°C.

At boot the fan is turned on, and the tachometer input is checked to see if the fan is spinning. If it is, then the `cooling_fan` device tree overlay is enabled. This overlay is in `bcm2712-rpi-5-b.dtb` by default, but with `status=disabled`.

==== Raspberry Pi 5 fan connector pinout
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Revision : a02082
Serial : 00000000765fc593
----

NOTE: All Raspberry Pi computers report `BCM2835`, even those with BCM2836, BCM2837, BCM2711, and BCM2712 processors. You should not use this string to detect the processor. Decode the revision code using the information below, or `cat /sys/firmware/devicetree/base/model`.
NOTE: All Raspberry Pi computers report `BCM2835`, even those with BCM2836, BCM2837, BCM2711, and BCM2712 processors. You should not use this string to detect the processor. Decode the revision code using the information below, or `cat /sys/firmware/devicetree/base/model`. Depending on which kernel you're running, your `cpuinfo` might also have a "Model" line, and might not have a "Hardware" line.

=== Old-style revision codes

Expand Down
2 changes: 1 addition & 1 deletion lib/pico-examples
Submodule pico-examples updated 169 files
2 changes: 1 addition & 1 deletion lib/pico-sdk
Submodule pico-sdk updated 385 files