Troubleshooting • Re: LibreOffice File Access on NAS
All other OSes (Mac, Win, X86 Linux) can use LibreOffice with files on the NAS without issue, The Ububtu OS available using Imager works fine on the Pi as well.Maybe it is interesting for others to...
View ArticleAdvanced users • Re: libgpiod version [SOLVED]
Hi Phil thanks for the history. I have recently come to the Pi family. I had a task to design a solution for railway door locking on heritage stock and I saw the Rpi as a suitable solution. I needed...
View ArticleTroubleshooting • Re: Issues with gpiozero on Pi 5 — No such file or...
I think it is Code: pip install rpi-lgpio in the venvThat's Dave's compatability shim to translate old style RPi.ixxx to new style interfaces in the background, not the new style lgpio (which may be...
View ArticleGraphics, sound and multimedia • Re: ADV7280M disabling I2P
https://github.com/raspberrypi/linux/bl ... 1288-L1292Code: /* * No support for receiving interlaced video, so never * request it from the sensor subdev. */mbus_fmt->field = V4L2_FIELD_NONE;There...
View ArticleMicroPython • Re: Ask about Three-wire Serial EEPROM in RP2040
Maybe as a quick-and-dirty test:Code: id = 0 # or 1mem32[0x4003c000 + 0x4000*id] = 2<<4 # RP2040#mem32[0x40080000 + 0x8000*id] = 2<<4 # RP2350spi = SPI(id, …)Statistics: Posted by...
View ArticleFrançais • Re: Quel OS pour ce que j’envisage de faire ?
Merci pour la réponse.TimeShift ? Ok, ça me paraît très très bien.Pour l’OS j’hésite encore.Dans le temps, je pourrais utiliser aussi ce RPI comme un NAS. Du coup, j’ai pensé à OpenMediaVault.C’est...
View ArticleBeginners • Re: Clock ident on TV
try this...Code: #!/usr/bin/env python3import pygame, sysimport timefrom pygame.locals import *import datetimeimport mathwidth = 800height = 480clock =...
View ArticleSDK • Re: Problem with OUT pins PIO command
I think he is asking if sm_config_set_out_pinsandsm_config_set_set_pins (unfortunate name)can overlap on the same SM.Usually they do for simple applications, just look at WS2812B example:Code: 79...
View ArticleRaspberry Pi 400 • Re: Pi 400: stackable HDMI display (11-15") ?
I actually mean a device which finally looks like a notebook but with built-in Raspi and feat a keyboard and an integrated display to open and close - like a common Windows notebook, but having a Pi...
View ArticleDevice Tree • Re: Is possible to use a 3dpt foot switch with dtoverlay=gpio-key?
Thank you very much for the answers The behavior is the normal one. The Dual Throw Foot switch is a latching one, when button is pressed it makes "click" and closes the circuit permanently till you...
View ArticleAI Camera - IMX500 • Re: pip install imx500-converter[tf] fails
I used Oracle Virtual Box and the last Ubuntu Distribution. The Installation works on a normal Linux PC with Ubuntu 2022 LTS.But the installation of the MCT is no longer a problem. Unfortunately, I...
View ArticleCamera board • Re: "Or Better"?
Another error:sudo apt install -y qtbase5-dev libqt5core5a libqt5widgetsCode: root@raspberrypi:/# sudo apt install -y qtbase5-dev libqt5core5a libqt5widgetsReading package lists... DoneBuilding...
View ArticleGeneral • Re: PIO multiple input passthrough configuration
Pico 2 (rp2350) ?MOV dst, PINS reads pins using the IN pin mapping, masked to the number of bits specified by SHIFTCTRL_IN_COUNT. The LSB of the read value is the pin indicated by PINCTRL_IN_BASE, and...
View ArticleHATs and other add-ons • Re: Pineboard NVMe & Ethernet Hat. Install advice.
using google is such a high-tech job, isn't it?Install the board underneath your Pi 5. Please note that the Ethernet port should be facing the Pi Statistics: Posted by aBUGSworstnightmare — Tue Oct...
View ArticleRaspberry Pi OS • Re: dumb mistake
This doesn't solve this problem, but is an interesting read on the topic of how it is sometimes possible to recover from this class of accident: https://www.ee.ryerson.ca/~elf/hack/recovery.htmlCool...
View ArticleRaspberry Pi OS • Re: Create initramfs for custom kernels
Thank you for your kind words, and my apologies for having bothered you.Statistics: Posted by mby — Tue Oct 15, 2024 11:10 am
View ArticleTroubleshooting • Re: libcamera-vid produces fragmented video
SO, it seems that displaying the video in the headless setup using RealVNC is the problem.Any clues from anyone about how to resolve this?RealVNC (or any remote desktop solution) is hideously...
View ArticleSDK • Re: Declare a 128Kb array with 128Kb alignment on an rp2040?
You could move the vector table, but are you sure it can BOOT from ROM anymore ? I guess not.I still don't understand why it needs to be aligned like that (maybe just ease of addressing). Without...
View ArticleGeneral programming discussion • RPi Timer ticks / interrupts
RPi 3B with Raspbian LiteIs there such a thing as a serviced timer tick? I'd like to call a routine every 1-2 ms or so, using C.If not, I suppose I could wire a couple of GPIOs together, set up PWM on...
View ArticleTroubleshooting • Re: Fan and USB wont shut down after shutdown / booting
take a fresh uSD with latest Raspberry Pi OS - https://www.raspberrypi.com/software/Disconnect additional hardware - in particular USB drives as you may have one that back powers your Pi - and boot...
View Article