Networking and servers • Re: Ideas for controlling a Raspberry Pi 5 via...
Yes but the OP asked about Bluetooth API etc.Oops! Missed that.But why use Bluetooth when WiFi/network access whether as a Hotspot or home network is so much easier with the tools available.See my...
View ArticleGeneral discussion • Re: Is this symptomatic of a failing SD card?
OK, I think I've just been able to answer my own question.However, I don't understand why my files were being written correctly every night...I would assume the section of the uSD card where your...
View ArticleGeneral • Re: RP2040: multiple (6) GPIO interrupts
2.3.2. InterruptsEach core is equipped with a standard ARM Nested Vectored Interrupt Controller (NVIC) which has 32 interrupt inputs.Each NVIC has the same interrupts routed to it, with the exception...
View ArticleInterfacing (DSI, CSI, I2C, etc.) • Re: DSI bug on Pi 5
Many thanks! We'll try this update today and report back.Statistics: Posted by cdsteinkuehler — Tue Aug 06, 2024 12:18 pm
View ArticleHATs and other add-ons • Re: Can I do a NVMe hat give away here?
Frankly Seeed's presence on the Raspberry Pi forums is very low. We don't really know how to reasonably and appropriately communicate with Raspberry Pi users here, and are still experimenting.May I...
View ArticleGeneral • Re: Bootloader development in RP2040
Thanks for your reply.So currently I have few doubts as well as approach we are following.1) Currently we are writing the bootloader at the address 0x10000000. can we write bootloader at this...
View ArticleOfficial Display • Re: No HDMI signal after connecting the official display...
Have you added below to config.txt? Code: dtdebug=1start with a fresh installation. Still I2C and SPI are enabled (If you need them later you can enable them once the issue with HDMI is...
View ArticleHATs and other add-ons • Re: Case for Pi4b with UPS and Low Profile Cooler
This is how its turned out, I would love it to be all in a case but im cool with this. Was a bit challenging figuring out which spacers to work and screw length in order to get the cooler to bite down...
View ArticlePython • Re: Installing MARIADB on Bookworm with Python
@neilgl OK, ran exactly as you had it in your original response - still no happiness:xxx@1234i:~$ sudo rm -r My_PythonAppsxxx@1234:~$ mkdir My_PythonAppsxxx@1234:~$ cd...
View ArticleTroubleshooting • Re: pi5 keeps locking up
as a follow up i added those lines Code: cat /boot/firmware/cmdline.txtconsole=serial0,115200 console=tty1 root=ZFS=rpool/ROOT/pios zfsforce=1 rootwait cfg80211.ieee80211_regdom=AU pcie_aspm=off...
View ArticleGeneral • Pico USB Web Cam
Is it possible to interface a USB web cam like this https://www.amazon.com/Ximimark-Camera- ... =yjtw04-20 to a Raspberry Pi Pico?Statistics: Posted by CrabbyPete — Wed Aug 07, 2024 12:06 pm
View ArticleAdvanced users • Re: Testing class A2 SD cards with Command Queueing on Pi 5
The first part of this entirely makes sense, and the second part is a consequential implementation of Postel's law.It's unfortunate that some manufacturers seem to be selling cards that AIUI don't...
View ArticleGeneral • Re: Help Needed: Achieving Long Delays with PIO for Pump Control on...
Probably best to post your full code in case there's something wrong or missing in that, pin configuration isn't correct.There are some PIO emulators and debuggers available which may help with...
View ArticleBeginners • Re: Help for a very old beginner
Went with amusement park rides (most coasters) for a hardware design network. Amusingly the Sun user server that IS made me buy (I wanted a NetApp) ended up being called Dropzone. Sadly, it lived up...
View ArticleGeneral discussion • Re: What data recovery software is best for recovering...
SEO spam.Statistics: Posted by jdb — Wed Aug 07, 2024 12:30 pm
View ArticleGaming • Re: Linux Air Combat on Raspberry Pi 5
Well, I'm not sure. I had to create THREE different install scripts to handle the three different Raspberry Pi environments that work well with Linux Air Combat. Although the three scripts are very...
View ArticleTroubleshooting • Re: RPi5 only boots to RPi OS
Sorry, I only just realised this post was related to PINN, and I see you have already posted on my sticky thread which I somehow missed. PINN does work on the Pi5 (with some minor limitations).PINN...
View ArticleCamera board • Direct Rendering with GUI in PiCamera2
Hello,Current Test Setup:Pi: Raspberry Pi 5OS: Raspbian Bookworm Lite 64bit (Release date: July 4th 2024)Camera Library: PiCamera2Camera: Pi Camera v1.3 (after dtoverlay=ov5467 in...
View ArticleGeneral • Re: Pico USB Web Cam
Maybe. But:You'll likely have to write your own driversThe Pico is only UBS 1RAM will be a problem. The Pico only has 256KB. That isn't enough for a single 1bpp frame at 640x480 let alone anythign...
View ArticleSDK • Re: How can I configured SPI 1 DMA on my PICO RP2040?
The idea with dummy byte is as below:Code: 0 , 1 , 2 , 3 , 4 TX (MOSI): FIFO_REG | 0x80, FIFO_REG | 0x80, FIFO_REG | 0x80, FIFO_REG | 0x80, FIFO_REG | 0x80RX (MISO): DUMMY_BYTE , XL_X_L_1 , XL_X_H_1 ,...
View Article