Troubleshooting • Re: Connecting a waveshare MAX m8Q GNSS to Rasp Pi 5
Also, this article is quite handy:https://www.satsignal.eu/raspberry-pi/UpdatingGPSD.htmlStatistics: Posted by SpaceHusky — Thu Sep 05, 2024 10:09 pm
View ArticleAdvanced users • How to downgrade Broadcom wireless network drivers?
I have encountered a defect that I think was caused by an update to drivers made on or after 2024-08-04. So I'm looking for the easiest way to downgrade my drivers to previously installed versions,...
View ArticleBeginners • Re: Connecting 220V to Raspberry PI GIO pins
If you look at how a UPS works, you will find stuff about sending a signal to the OS a few seconds before power cuts out. The OS can start a shutdown process. There are UPS projects for the Pi. You...
View ArticleAdvanced users • Re: Raspberry Pi 5: Host + Slave USB setup
Do some cable mods to either:1. Feed power in via the GPIO header pins and disconnect +5 volt supply to USB-C plug.2. Feed +5 volt into USB-C plug from PSU which can supply adequate...
View ArticleGeneral • Re: Pico W USB lockup
Two things If you recreate the log file each time the PICO is started, then you lose any previous error. Try append or rename like I do. If you notice the lock up while connected to Thonny, it could...
View ArticleGraphics, sound and multimedia • Re: iMac as display for RPI5
Thanks inspector_gadget for the hint with CMD+F2, I'm using Sierra and there are some differences, but it may work with your suggestion. Now to your problem: Check on your Raspi5 the file...
View ArticleTroubleshooting • Re: Dip Switches on Pi Keyboard
Unlikely. It's probably for a proposed feature that was deemed unnecessary or too expensive, or didn't work. ...... Other speculative reasons can be suggested.Maybe U3 was going to be a trackpad chip,...
View ArticleBeginners • Re: How to Install Blender on Raspberry Pi 4? Compilation Error...
What's wrong with simply doing:Code: sudo apt install blenderStatistics: Posted by craigevil — Fri Sep 06, 2024 10:37 pm
View ArticleGeneral • Re: what is the logic of ADC interrupt enabling?
Code: static inline void adc_fifo_setup(bool en, bool dreq_en, uint16_t dreq_thresh, bool err_in_fifo, bool byte_shift) { hw_write_masked(&adc_hw->fcs, (bool_to_bit(en) << ADC_FCS_EN_LSB)...
View ArticleGeneral discussion • How to easily be able to use push buttons with GPIO
Okay I have finally worked it out and it’s actually really simple.In case anyone else wants to wire buttons directly to GPIO…Normally every time you reboot the pi it resets any changes unless you...
View ArticleGeneral discussion • Re: Details about raspberry pi warranty claim process
With regard to the warranty process itself, the posts above are correct. Your warranty is with the supplier, so that is where you need to go for front-line support and warranty claims. We at Raspberry...
View ArticleRaspberry Pi Connect • Re: rpi-connect causes 100% of memory to be used, and...
Seems like the problem is connected to `wayland` and switching to `labwc` fixes it. https://github.com/raspberrypi/bookworm ... issues/281Statistics: Posted by MarlinMr — Fri Sep 06, 2024 10:51 pm
View ArticleGraphics, sound and multimedia • Re: fruitbox MP3 jukebox
Okay I have finally worked it out and it’s actually really simple.In case anyone else wants to wire buttons directly to GPIO…Normally every time you reboot the pi it resets any changes unless you...
View ArticleGeneral discussion • Re: How to easily be able to use push buttons with GPIO
gpio=0-27=op,pu,dh,ipYou seem to have conflicting options there.op = set to Output modepu = Enable internal Pull-Up (used for Input, pointless on Output)dh = Set Output Highip = Set to Input modeI...
View ArticleGeneral • RP2350 SSP/XIP Block Transfer Examples
Hi, I'm porting my video demo code from the RP2040 to RP2350 and the last bit to get working is where I'd used flash SSI/DMA block transfer for streaming bitmaps.It seems the examples in the new SDK...
View ArticleGeneral • Re: RP2350 SSP/XIP Block Transfer Examples
I also request for an example Being lazy just before midnight I recall from my memory (might be wrong), that for 2350 streaming from XIP can get as fast as QSPI interface, but turning off XIP to save...
View ArticleGeneral • Re: RP2350 E9 bug - also for other GPIOs, e.g. SPI?
I did see a report somewhere that they had a system that left the MISO floating for some of the higher-order bits of the byte and hadn't bothered to mask off the unused bits; I'm struggling to see...
View ArticleCamera board • Problem Running NVO Ninja on Bookworm Pi 5 - GstWebRtc
I am running Bookworm version 12 on a Pi 5. I want to run NVO Ninja for a web cam but have hit problems.I followed the instructions on this page, but when I ran the test python program, I got the...
View ArticleGeneral • Re: Official RP235xB boards?
If you really want an RP2350B board, other vendors make them, such as the Pimoroni Pico Plus 2. (However, I must warn you that even though the Pico Plus 2 uses an RP2350B, it does not expose all of...
View ArticleGeneral • Re: SYSINFO:CHIP_ID value ?
Do you really want to know if it is a RP2350 or a RP2354 or do you want to know how much FLASH is attached?Ideally I'd like both.I have favoured doing sizing by checking on mirroring. I have never...
View Article