Advanced users • Re: Pi 5 Jitter every 2~3 seconds
As a comparison, and to demonstrate what I hope to achieve with the Raspberry Pi, I also tested using a Windows host. My Windows computer does not have any GPIO pins for measuring timing on a scope,...
View ArticleTroubleshooting • Re: Might have bricked my raspberry pi 5
Is it 4 blinks at the same rate or 3 and 1?I took a video here:https://drive.google.com/file/d/1VJOeuo ... p=drivesdkthats clearly 3 long and 1 shortyou interrupted it mid flashing, and corrupted the...
View ArticleGeneral discussion • Re: Raspberry Pi 5 unofficial power supply?
I am setting up my Pi for mobile computing. I have the Pi 5 with the official cooler, Pimoroni NVME base, 4TB Crucial NVME SSD and all works well. I have not tried booting it on the DC power yet but I...
View ArticleTroubleshooting • Re: 4b has messed up output to an 440x1920 HDMI display
Most likely another purchase of CCC!Not knowing the product but my bet is that it's not providing a correct EDID.So checking the EDID, exporting it to a .bin, having that loaded via kernel command...
View ArticleMicroPython • Re: Why does this code only work over USB connected to Thonny?
Code: ... wlan = network.WLAN(network.STA_IF)wlan.active(True)wlan.connect(SSID,password)time.sleep(2)max_wait = 10while max_wait > 0: if wlan.status() < 0 or wlan.status() >= 3: break...
View ArticleGeneral discussion • Re: New Raspberry Pi Products
maybe we're looking at different revisions of the document as mine states 2x 4-lane CSI/DSI and says that the 2-lane DSI/CSI were removed.Pinout changes.The CM4 had one 2ch and one 4ch Cams, from...
View ArticleCamera board • Re: 64MP_Autofocus is not detecting.
Hello,I am using raspberry pi 5 with the the bookworm OS of 64 bit and I have also tried 32 bit.I have followed this to install drivers:https://docs.arducam.com/Raspberry-Pi-C ... mp-camerasYesterday...
View ArticleHATs and other add-ons • Re: Rpi 5 built-in power switch ("PSW"),...
Is that an advertising post or a request for support?A request for support with a lot of details on what I'm trying to accomplish, and what components I'm using to do it...Think it's advertisement as...
View ArticleMicroPython • Re: pico onboard rtc and lack of datetime module
Thanks all.Converting to epoch time in seconds makes sense. Like I say, I don't need to know how to set the rtc to the correct time, I need to now how to compare times and I think doing it with...
View ArticleGeneral • Re: sideset possibilities?
Thank you for the replies, I did come to the conclusion that the sideset was going to be more cumbersome than the solution would be advantageous, But I atleast learnt a new thing or two Statistics:...
View ArticleGeneral • Re: latching an address
Not sure what you need. AFAIK a 65C816 is an enhanced 8bit processor 6502 and address handling needs special treatment.The processor on a pico is a 32bit device and does not need special address...
View ArticleAdvanced users • Re: Is there a version of pi os with usb gadget mode installed
it's a few lines in a couple of files.perhaps a link to the guide your trying to follow can shed some light on what your doing wrong.Statistics: Posted by kerry_s — Thu Apr 25, 2024 6:55 am
View ArticleWanted • Re: Exciting Consultancy Opportunity: Raspberry Pi Developer for...
Hello, I would like to inform the readers that our submission window is still active and those willing to appear for a consultancy opportunity can still do so by submitting their CV to...
View ArticleCamera board • Re: raspberry pi 3 camera module 3
hi there, user@raspberrypi:~ $ cat /etc/os-releasePRETTY_NAME="Raspbian GNU/Linux 11 (bullseye)"NAME="Raspbian GNU/Linux"VERSION_ID="11"VERSION="11...
View ArticleC/C++ • Re: how to resolve 'glibc_2.34 not found'
Thé other way is to get all bookworkm libraries linked by you project (including libgcc++) from your bookworm device, put them in a folder, and launch with Code:...
View ArticleGeneral discussion • Re: Download at restart
look at the servicesCode: systemd-analyze blameanything that might use the internet for updates.from my install i can see 2 that would use net.apt-dailysystemd-timesyncdStatistics: Posted by kerry_s —...
View ArticleBeginners • Re: Camera module 3 and python
Yes I create sytem site package and it is BullseyeStatistics: Posted by Veronika_37 — Fri Apr 26, 2024 6:35 am
View ArticleRaspberry Pi OS • eeprom updates gives error - solved
So even though updates (as above) worked but still nil luck with eeprom I decided to change the fstab from ro to rw and after that a restart .sudo nano /etc/fstabIt worked and was able to update the...
View ArticleOther projects • Re: Goal: 20mhz PWM signal at 8-bit resolution. Possible?
The LED would only be on for 1-2 minutes at a time.Statistics: Posted by phennessey — Fri Apr 26, 2024 6:47 am
View ArticleCamera board • Re: RuntimeError: Camera __init__ sequence did not complete.
Code: INFO Camera camera.cpp:990 Pipeline handler in use by another processYou have something else running that is using the camera. Find it and stop it.Statistics: Posted by 6by9 — Fri Apr 26, 2024...
View Article