Troubleshooting • Re: [Bookworm] Pi Won't set Wi-Fi country code
I can only confirm to see the same problem:Code: $ sudo raspi-config nonint do_wifi_country DK$ sudo raspi-config nonint get_wifi_country -> DK which is correct$ iw reg getglobalcountry DK:...
View ArticleTroubleshooting • Re: RPi5, USB3.0 and Interference with local GPS
@6by9 Question - Is it possible to stop USB3 negotiation in software? Our primary peripherals will work at USB2 speeds but due to the way we designed the enclosure it needs to use the USB3 bus. Is...
View ArticleSDK • Re: Latest VS Code extension: error with example project
I'm not certain if this is significant or not, but it appears the when detecting tools the system python v3.8.2 is found (see end of code block, below). The python version installed with the extension...
View ArticleGeneral • Re: control a set of 15 inputs that output 15 outputs on Pico
Just so OP knows all the options available, you can also apply charlieplexing for the LEDs. https://en.wikipedia.org/wiki/CharlieplexingThe easiest route is to stick to a keyboard matrix, of course....
View ArticleGeneral • Re: Pi Pico VScode extension: Failed to setup example
Posting here on behalf of the following thread that I started. Not meaning to cross-post, but the topics are similar and I found this post after I'd started the following topic in the SDK forum.Latest...
View ArticleSDK • Re: TrustZone using Pico 2
Have you read the security chapter of the datasheet, and the Armv8-M architecture reference manual section on the Security extension? There should be a lot of useful information in there.The cores...
View ArticleAndroid • Re: Raspberry Pi 4 can run both Android and Linux apps.
We have updated our APK's to work with Konsta Kang's lineage-21.0-20240816-UNOFFICIAL-KonstaKANG-rpi4.zip release. You can also install it on AOSP14 .Statistics: Posted by Vasant — Thu Aug 22, 2024...
View ArticleTroubleshooting • 100% virtual memory
Hi, Ive set up a Pi 5 as a home server/NAS. It’s runs several services including:ApacheSMBMariaDBPlex Media ServerDHCPVPN serverTP-Link Omada ControllerJRiver Media CenterAfter about a day or so of up...
View ArticleGeneral discussion • Re: Power Issues After a Spike
I think the 3B+ has a PTC/PPTC (resetable fuse) which when triggered hard can a long time to recover.Leave the 3B+ totally unpowered for 24 hours and try again.Re-powering the 3B+ before the PTC is...
View ArticleGeneral discussion • Re: Pi pico problem with the button
With the fixed sleep period you can’t change then running in a single thread is not practical. It sound like you need to use both cores and run button 1 detection on one and two on the other. See...
View ArticleBeginners • Re: NVMe memory
I've been using the following for more than six months without a single hiccup:Geekworm X1001 PCIe Peripheral BoardKingston NV2 500G M.2 2280 NVMe Internal SSDUsing PCIe 3.0, yielding both speed and...
View ArticleSDK • Re: picotool 2.0.0 is installed, cmake says it can't find it...
Well, I guess this is it - https://cmake.org/cmake/help/latest/com ... ckage.html - mostly a black box which provides no obvious means to tell what it's actually doing as it progresses when called...
View ArticleGeneral programming discussion • Re: Using RTC time in Rasberry Pi Programs
I am not sure about the Pico I suppose the Pico being an MCU it has to be interfaced with a zero, pi, pc for it to get the time through interface. The zero and pi would be connected to internet always...
View ArticleBeginners • Browser page jumps position on refresh
I have a problem with the internet browser chromium jumping position after scrolling down any page. It seems to do this on every page that is larger than one screen, when the page refreshes or reloads...
View ArticleNetworking and servers • Control Raspberry Pi Via Networkless Interface
Hello Raspberry Pi Forum,So here's my dilemma: I want to control my raspberry via a network-less web interface. E.g. a flask application running through screen.I have tried several things:- Hosting a...
View ArticleGeneral • pico multicore & printf
Hi,The following output via minicom over usb is correct, as produced by the code snippets after the +++ line. What I'm interested in knowing is why this doesn't work without all those sleep_ms(1000);...
View ArticleGeneral • Re: RP2040 / RP2350 Secondary USB HID (guest, not host)
Yep, I think it's feasible. You need another USB stack:https://github.com/sekigon-gonnoc/Pico-PIO-USBStatistics: Posted by katak255 — Fri Aug 23, 2024 1:11 am
View ArticleInterfacing (DSI, CSI, I2C, etc.) • Re: GPIO pin (GND to be specific) current...
@davidcotonIn your last but one bullet you mention "Similarly, if separate PSUs are used, the ground path is separate even if the ground of the Pi is connected through the power switching device to...
View ArticleTroubleshooting • Re: How to Install a x86_64 .deb Package on Raspberry Pi...
But box86 is not a virtual machine, right? I understood that it was something like wine, I mean, if I can install some steam games like that, why can't I install drivers?Box86 is an emulator. WINE Is...
View ArticleC/C++ • Re: CMake and arch-specific compiler options
Architecture-specific options do not belong in a CMakeLists.txt, they belong in a toolchain file.See e.g. https://github.com/tttapa/docker-arm-cr ... file#cmake or...
View Article