General • Re: Forced and EXEC’d Instructions
The program did print out "Loaded program at 30" but I didn't really understand what that offset means. I keep thinking that the program will be load from address 0 but looks like the compiler...
View ArticleBeginners • Re: OS documentation for omitted Linux commands?
You can install the package apt-file to search for packages by filename.Note that apt file:downloads huge index files;can produce thousands of lines of not very useful output;may provide several...
View ArticleSDK • Re: Not able to change PICO_BOARD type in CMakeLists.txt with VScode
Great, it works now !Thank you for your help Statistics: Posted by dje9 — Thu Aug 15, 2024 7:43 pm
View ArticleTroubleshooting • Re: sudo apt upgrade failing
Much safer to use "sudo apt full-upgrade" than just upgrade.It is the normal way but decided to leave that as it wasn't the issue. Although in my eyes upgrade is safer as it doesn't remove, install...
View ArticleBeginners • Re: Pico getting started guide: blink.uf2 built w/o errors, but...
You may want to post your question in the VS Community forum at https://developercommunity.visualstudio ... sualStudioStatistics: Posted by DS256 — Fri Aug 16, 2024 7:27 pm
View ArticleNetworking and servers • Re: Cannot enable usb ethernet gadget on u-boot with...
Enable the USB Ethernet gadget on your Pi Zero 2 W with U-Boot, try the following steps:Check U-Boot Configuration: Ensure it's set up correctly for USB Ethernet.Verify Kernel Support: Confirm that...
View ArticleNetworking and servers • Re: Cant access device on Wifi AP
Please LMK how it goesCode: curl -L https://raw.githubusercontent.com/gitbls/sdm/master/extras/rpnc -o rpncchmod 755 rpnc./rpncEDIT: Forgot to mention hotspot plugin documentation:...
View ArticleCamera board • Re: feedback requested on dual GS camera design
Sure, this is a top view. Just push the pins you would like to solder in, there are slots for every pin. In your case you only need GND, XHS, 3V3 and XVS. The design assumes a 8.5x 7mm pin with the...
View ArticleAdvanced users • Re: How to make gpio-keys autorepeat?
Is there some guidance somewhere that sets out what parameters are support by each overlay?Statistics: Posted by scotty101 — Fri Aug 16, 2024 7:33 pm
View ArticleTroubleshooting • Re: Using USB RFID card reader with Raspberry Pi 5
I caught something new, I connected the reader to rpi 5 and within 1 second I typed the lsusb command and the reader was listed, then I ran the lsusb command again and the reader disappeared again, I...
View ArticleRaspberry Pi OS • Re: Is Bookworm worth it yet over Bullseye?
Check PiKiss see if they've updated for the new OS and DesktopCheck with Retro Pi to see if they've updated, but hey seem to be lagging a lot, many moved to other similar projects. Pimoroni seem to...
View ArticleGeneral discussion • Re: New Raspberry Pi Products
The latest firmware for BCM2712-based devices that is available via apt is the one you have installed. If you want to install the 2024-08-30 image now, before it appears in apt, you can just grab it...
View ArticleMicroPython • Re: How to send data from pico to driver board using I2C pins
What if we do GPIO operation instead of I2C? That would be great.The I2C pins are used in I2C mode when communicating with an I2C device. But they can be used as GPIO pins if no I2C device is...
View ArticleGeneral • Re: Dynamically load functions into RAM
Overlays in the gnu linker: https://ftp.gnu.org/old-gnu/Manuals/ld- ... ld_22.htmlStatistics: Posted by WestfW — Fri Aug 16, 2024 7:48 pm
View ArticleTroubleshooting • Re: Connecting a waveshare MAX m8Q GNSS to Rasp Pi 5
that looks promising. You're connecting via USB?Does cgps display anything useful? That would mean that gpsd is happyStatistics: Posted by scruss — Fri Aug 16, 2024 8:03 pm
View ArticleSDK • Re: Issue with 'picotool' 2.0.0
Thanks. So it seems 'Flash Nuke' is now a universal UF2 for Pico and Pico 2 which is good news.And that "maybe we should treat separate families in a UF2 independently" is exactly what I've spent the...
View ArticleGeneral discussion • Re: Looking at improving my backing up of my Pie's...
As mentioned, there is an SD Card Copier utility in the RasPiOS Start menu under Accessories. My understanding is that the result is the smallest possible copy of the actual content of the running OS....
View ArticleOther RP2040 boards • Re: Breadboard friendly RP2350B board?
The "Pimoroni Pico Plus 2" is using the RP2350B and provides PSRAM in the standard Pico footprint, but pre-order at present...
View ArticleGeneral • Active high QMI CS1 possible?
If I set a bank 0 GPIO to the QMI CS1 function and set its OUTOVER bits to invert the output signal, would that give me an active high rather than active low CS1?For context, the design includes...
View ArticleAdvanced users • Re: Image File Utilities
Using dd is undesirable because it allocates storage blocks and takes considerable time to write zeroes into them.Using truncate, storage blocks aren't allocated until needed (sparse allocation) and...
View Article