Beginners • Re: pi5 using 480i
First time user, here. I managed to get 480i on boot.You may need to use "sudo rpi-update" to get the interlaced fix that @6by9 worked out - props for that! Until the apt release hits 6.6 or whatever...
View ArticleGeneral • Re: Need some help figuring out PIO code problem
Ok I've sort of figured it out. Has to do with the .side() pin settings. If I set the last 2 bits, the 9th bit and the stop bit to .side(1) for the address and .side(0) for the data it seems to work....
View ArticleNetworking and servers • Re: Connect Raspberry Pi to eduroam wifi
RPi GUI just uses the usual student login for the system, which around here is userrid@institutionaddress.ac.ukThat's good to know. I think Android and maybe Apple put each part in separate boxes....
View ArticleAdvanced users • Re: [pr/legacy]
Square brackets mean it's a kernel thread (if you do a ps -ef, you'll see their PPID is that of kthreadd, usually 2 on my systems). It's a kernel driver/module or something like that. Maybe have a...
View ArticleC/C++ • Re: Example of GPIO use with Linux only (no third party libraries)
We are indeed talking about the same thing. Weird, I know. I must admit I hadn't looked too closely at that code and I stand corrected - the original code doesn't even follow its documentation - it...
View ArticleBeginners • Re: Cannot get to work OLED display.
I just found this on the forum. I know this is a different display, but could this explain your problem?viewtopic.php?t=352484Statistics: Posted by AndyD — Tue Sep 17, 2024 11:18 pm
View ArticleTroubleshooting • Re: Raspberry Pi 5 boot issues - possible EEPROM error?
Update: everything works after Bootloader has done its thing. I'm sorry for posting my question prematurely, I guess this thread can be locked or removed now Statistics: Posted by srx00 — Tue Sep 17,...
View ArticleTroubleshooting • Re: Samba works for one share but not another. Permission...
Thanks for the feedback,the last level isCode: jc@Rpi4-HA-M2:/opt/homeAssistant $ ls -ltotal 4drwxr-xr-x 13 jc jc 4096 Sep 17 14:44 dataAnd from a terminal session jc (the operating system user) can...
View ArticleTroubleshooting • Re: Raspberry Pi 5, official active cooler always running...
Solved. Thanks to all. My 8GB Pi5 had exactly the same issue, active cooler blowing at top speed constantly. Even with CPU temp at 37.8C.Code: $ cat /boot/firmware/config.txt#dtparam=cooling_fan[edit]...
View ArticleTroubleshooting • Raspberry pi installer Windows 11
Hi,I'm trying to image a card for a pi zero w2. I've downloaded the imager and the installer runs and launches the app but does not appear to install the app such that you then have to re run the...
View ArticleHATs and other add-ons • M.2 and POE HATs: Preferred stacking order?
Thoughts/advice sought please.The board is an 8GB Pi5 with an official active cooler. I suspect I'd like to keep this in situ.Case not a consideration/constraint here. The aim is to assemble a POE...
View ArticleTroubleshooting • Re: RP5 software upgrade breaks headless operation
Seems like the boot order is wrong, Run:Code: sudo raspi-configto change the boot order.Statistics: Posted by kmacdchap — Tue Sep 17, 2024 11:57 pm
View ArticleAutomation, sensing and robotics • cant install modules for official RPI camera
i got the official Raspberry PI 5MP Camera Board Module from 2014. it is plugged into the rpi 3 via the ribbon cable. the OS is 32 bit Bookworm.my python script calls for: import picameraimport...
View ArticleTroubleshooting • Re: Raspberry pi installer Windows 11
HiI tried downloading RPI imager on my Ubuntu machine via snap. I've run into another issue and the error is grumbling that no Qt platform could be started!All I want to do is create an SD card for my...
View ArticleAdvanced users • Re: TP-Link Archer T2U PLUS [RTL8821AU] Monitor mode
Wrong driver - 8812AU is not the same as 8821AU https://github.com/morrownr/8821au-20210708 works. Solved.Statistics: Posted by tasc — Wed Sep 18, 2024 10:36 pm
View ArticleGeneral • Re: Pico2 easy upgrade or nightmare?
When you have a custom board header the file goes where?In ${CMAKE_BOARD_HEADER_DIRS}I normally use:Code: set(PICO_BOARD_HEADER_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/../boards)which gives me a /boards...
View ArticleTroubleshooting • Re: Pi 5 failing after most recent update
Huh,Using full-upgrade fixed it. I guess there is a clash that dist isn't resolving properly.First time in years of using Linux I've had that one...Edit: nope. It looked like it'd worked fine, and...
View ArticleOther RP2040 boards • Custom RP2040 Board only 'likes' one uf2 file
TLDR:I have a custom board, and a single provided uf2 file. The board booted with the provided uf2 file and works fine with serial communication. Any other file I have tried to boot appears to run but...
View ArticleBeginners • Re: pi5 using 480i
Instructions were in the first post i made in this thread.But, in more detail: you need to go to the command prompt and type "sudo nano /boot/cmdline.txt" to edit the file and add...
View ArticleSDK • Re: IRQ handler issue
Triggering on rising edge or falling edge or both? Post code so people can see.Statistics: Posted by Heisen — Wed Sep 18, 2024 11:19 pm
View Article