MicroPython • Re: conflict between peripherals
Thanks for clarifying, ghpThere is an feature of Adalogger's SD card reader that I had missed:"SD Detect JumperOn the back of the board, directly above GP15 and to the left of the cowbell logo on the...
View ArticleTroubleshooting • Re: Removing power supply unit: password is no longer accepted
I don't think this would cause your problem, but just in case: you do shut down the OS before removing the power?Statistics: Posted by davidcoton — Sun Dec 08, 2024 5:09 pm
View ArticleAdvanced users • Re: NUMA Testing
Ther seems to be an issue both with official kernel 6.12 via rpi-update next as well as my self-compiled kernel 6.13:Code: $ dmesg | grep NUMA[ 0.000000] NUMA: Faking a node at [mem...
View ArticleSDK • Re: prevent "Downloading Picotool"
It seems I'd got as far a downloading building the picotool tree already , but not managed to make it work , so I dropped it. the following : https://github.com/raspberrypi/pico-sdk ......
View ArticleAI Camera - IMX500 • Re: imx500-tools
Hey guys, I have recently bought a Raspberry Pi AI camera and I wanted to try it out for the first time, I have a Raspberry Pi 4 by the way. I wen through many tutorials online on how to set it up yet...
View ArticleCamera board • Re: Camera flickering at low light
Auto_exposure = 0 will be auto, try 1,2 or 3Statistics: Posted by gordon77 — Sun Dec 08, 2024 5:30 pm
View ArticleBeginners • Re: A replacement for MotionEyeOS?
Another alternative is to use the example from the excellent github picamera2 repository captures motion: https://github.com/raspberrypi/picamer ... _motion.pyMine works very similar but also adds...
View ArticleRaspberry Pi OS • Re: Clarification re: picotool & vs code
Well, I tried $ whereis picotooland, in return, I got:picotool:(not a typo...'picotool:' is exactly what I got)Statistics: Posted by picopirate — Sun Dec 08, 2024 5:36 pm
View ArticleTroubleshooting • Re: Pi Model B correct way to first time boot after Imager?
@rpdom Thanks for that info, I have bookmarked it for if I ever feel that brave.Right now I'm feeling like I've almost reached grey cell capacity. I now have a bullseye lite version running on my Pi....
View ArticleHailo • Re: AI kit Hailo-8l
I converted my model to ONNX first using Ultralytics. Then I used Hailos Software Suite docker image to convert it from ONNX to Hef.ONNX to Hef Guide:https://github.com/hailo-ai/hailo_model ......
View ArticleGeneral discussion • Re: New Raspberry Pi Products
Seems like the rp2040 on the pi500 responsible controlling the keyboard runs QMK!https://github.com/raspberrypi/QMK/tree ... /rpi/pi500Sadly I don't have an pi500 at hand, maybe someone can test and...
View ArticleRaspberry Pi OS • Re: RPi 5 8GB RAM failed reboot and exit to initramfs
I'd like to see the output of blkid when the system does boot.This is from the system that did boot ok after:(1) showing the drop to initramfs message in the original post(2) I powered down the USB...
View ArticleBeginners • Re: CM4-NAS-Double-Deck built in 2" LCD display
Well after a LOT of correspondence with Wave share about this, uninstalling reinstalling they sent me a new image file to install.This am am happy to say worked. The precompiled image from their web...
View ArticleMicroPython • Re: How do you get a Pico W to sleep?
I have used it on both on the Pico and PicoW, but I recently found that micropython v1.24 does not work for machine.lightsleep(). It works fine using micropython v1.23Statistics: Posted by CrabbyPete...
View ArticleRaspberry Pi OS • Re: [SOLVED] Best way to disable WiFi Power Save?
I'm posting here in case anyone has the same issue auto disabling Wifi power saving.I followed the instructions here viewtopic.php?t=337943to create a service to auto disable power saving.Whilst this...
View ArticleAdvanced users • Re: Image File Utilities
I've tried running it interactively with 11000 MB as "Initial image file ROOT filesystem size (MB)" (default was 9511 MB). It looks like it worked without any errors. Here's the result: Code:...
View ArticleGeneral • Re: Size of HASH_VALUE item in RP2530
The bootrom creates a regular 32 byte SHA-256 hash* for signature checking, the full 256 bit hash is what is signed (and signature checked)* HASH_VALUE is only used for standalone hash checking...
View ArticleGeneral • Re: PT52-Lua The Modern Retro computer
I had a look at the femto text editor site. That's great, a very minimal text editor. Nice to hear you got that unlink error fixed. As far as regular printf and not fprintf, is the replacement...
View ArticleAdvanced users • Re: systemd service ran fine on CM4 doesn't work on CM5
JoJoPi has a point - by default, CM5 (like Pi 5) puts the UART on the debug header, and that is what /dev/serial0 maps to. However, there are two ways to enable UART0 on GPIOs 14 & 15:1. Add...
View ArticleC/C++ • Re: Timers in C++
Thanks @njh for your hint.The only other "I/O" that will be in this control system will be push buttons (at least 4 of them).The little code you posted is exactly the way I was thinking of doing it,...
View Article