frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Open in hackernews

RP2350pc Open Source Hardware all in one computer

https://olimex.wordpress.com/2025/07/01/rp2350pc-open-source-hardware-all-in-one-computer-with-rp2350b-8mb-psram-16mb-flash-four-usb-host-dvi-hdmi-output-and-audio-codec-for-retro-computer-emulation-and-education/
54•AlexeyBrin•9h ago

Comments

nfriedly•7h ago
That reminds me a bit of the Adafruit Fruit Jam, which is another little SBC built around the RP2350 - https://www.adafruit.com/product/6200
oytis•6h ago
Olimex board seems to be available right now though.
kevin42•7h ago
I think this is a really cool project, but the problem with putting so many peripherals on such a small processor is that it's really tough to have firmware that uses all of those things at once and fit in the memory footprint.

I can see this as a great platform for prototyping though.

crest•6h ago
The memory footprint is 520kiB of SRAM + 8MiB of QSPI RAM + 16MiB of QSPI flash. What kind of bloated monstrosity do you want to run on that poor board?
Lerc•6h ago
Once you have video out, Memory eating options become quite available. Framebuffers are quite large.

I've got a 1.4inch screen waveshare rp2350 sitting beside me at the moment. I'm currently fighting getting paletted display update via DMA with limited success. As I work through it it does become apparent to me that you could generate a tiled+sprites mode a scanline at a time on demand with PIO and DMA. I'm not convinced it could be run with zero CPU involvement, but it could certainly be done with very little CPU.

raphlinus•4h ago
For 640x480 output not overclocked, I estimate tile + sprite CPU utilization to be about 50% of one core. Of course you have two cores. That number goes up and down depending on resolution, particularly when you're pixel doubling.

It's absolutely doable. There's the beginning of a tile demo (a scrolling brick wall) in the pico-dvi-rs repo.

Lerc•5m ago
I was thinking of doing almost everything in PIO + DMA

Here's the gist of it, I haven't implemented it so there will be devils in the details but I think it's doable.

One DMA (1) outputting the current line(unless pixel format change is done at this stage as well)

A bunch of chained DMA to assemble the next line almost like a display list. Sprites/tiles are entries in the display list.

The list entries contain the DMA/PIO setups to manage source, destination, pixel format etc. A DMA(2) transfers a list entry to another DMA(3) to write the required fields a list entry is essentially a series of [destination]<-constant or [destination]<-FIFO. DMA(3) just gets the job of being told by DMA(2) where to put everything. That is sufficient (I think) to set up the other DMA channels arbitrarily from the list data.

Pixel format conversion is done by a PIO writing some number of bits out as a value that gets DMA'd to the low byte of a DMA source register and then triggering a DMA transfer with a length of 1 to read the palette entry and copy the color information into another PIO FIFO. I'm not sure on the best way to do sprite transparency, There's definitely ways to suppress writing on source==0. Would need investigating, worst case scenario would be conditionally triggering one of DMA [destination++]<-color or DMA [destination++]<-[destination]

Once the display list is set up for a mode it wouldn't be touched. All of the dynamic parameters would come from the locations read by list entries. Tile maps, tile images, sprite locations, sprite data etc would not be in the master list, just the locations of where to find those.

Then all that remains is to make a toast to the memory of Jay Miner.

Retr0id•7h ago
Huh, according to the schematic the USB hub upstream port is routed to the D+/- pins on the rp2350. How does that work? I thought the only way a rp2350 could act as a USB host was via PIO?
rasz•6h ago
rp2350 has 'USB 1.1 controller and PHY, with host and device support'. Plugging powered cable to USB-C should keep HUB in reset.
15155•5h ago
> I thought the only way a rp2350 could act as a USB host was via PIO?

With the vendor SDK driver, yes. The controller can operate in Host mode if you BYO driver.

rasz•6h ago
>Stereo Audio Codec with Stereo Audio Amplifier

uses ES8311 'Low Power Mono Audio CODEC' http://www.everest-semi.com/pdf/ES8311%20PB.pdf, Mono DAC with differential output. I dont even understand why someone would do that, yes its a $.3 part but real stereo codec from TI (TLV320AIC320x) is just $.6

Edit: looking at BOM it might be caused by Made in China 2025 and trying to get as close to 100% domestic part list for some subsidies.

chaosprint•6h ago
very cool. But I don't understand why ES8311 mono audio codec is used here. I recently successfully run Glicol (https://github.com/chaosprint/glicol) on Pico 2 and I am building a prototype board for myself. AIC3204 is my first choice for now and it's not that expensive
raphlinus•6h ago
This looks really cool, I ordered one. I'm also waiting for the Fruit Jam, mentioned elsethread.

The pico-dvi-rs project has an early prototype of race-the-beam video generation, which I think has a lot of potential, it's going to allow much richer content than a framebuffer on this kind of device. One fun thing we've got going is proportionally spaced bitmap fonts, which is fairly unusual in this form factor. Please get in touch with me if you're interested in driving this thing with Rust.

[1]: https://github.com/DusterTheFirst/pico-dvi-rs

Lerc•6h ago
That's a lot of stuff connected to the one RP2350.

I can't help but feel that you could make almost the same board with 2 or 4 RP2350's without a significant percentage increase in cost.

Couldn't you wire most of the GPIOs together, they start off at high impedance, then let them work out who does what with plenty of options for weird processor sharing arrangements.

I guess if it's open source, I could take a look at doing one myself. What's the worst that could happen :-)

15155•5h ago
> Couldn't you wire most of the GPIOs together, they start off at high impedance, then let them work out who does what with plenty of options for weird processor sharing arrangements.

This is a ton of software to build.

Fast Linux-capable SOCs are only $5 with 100x+ the specs.

Lerc•4h ago
You don't play with these things for the raw performance. I'd get a quad rp2350 just so I could have a go at writing the software for such a weird architecture.

There are heaps of boring off the shelf options.

joezydeco•4h ago
I'm playing with the 2040/2350 because it's dirt cheap. A Pico2W with BT/Wifi is $7 from Adafruit.

I'm working on a project where we might just hand these to customers for a certain function and consider them disposable when the work is done.

wkat4242•2h ago
What's the point of making a "pc" out of something so weak? Take the SoC from a raspberry pi 3 (or zero two) and it's a lot more useful.

The Fed says this is a cube of $1M. They're off by half a million

https://calvin.sh/blog/fed-lie/
745•c249709•5h ago•284 comments

Figma Files Registration Statement for Proposed Initial Public Offering

https://www.figma.com/blog/s1-public/
100•kualto•2h ago•32 comments

The Roman Roads Research Association

https://www.romanroads.org/
14•bjourne•1h ago•2 comments

Feasibility study of a mission to Sedna - Nuclear propulsion and solar sailing

https://arxiv.org/abs/2506.17732
153•speckx•7h ago•51 comments

Ask HN: Who is hiring? (July 2025)

162•whoishiring•7h ago•177 comments

Code⇄GUI bidirectional editing via LSP

https://jamesbvaughan.com/bidirectional-editing/
66•jamesbvaughan•5h ago•23 comments

Scaleway NL-AMS down for 8 hours because of high temps

https://status.scaleway.com/incidents/1vz4xfgy2gcl
3•martinald•15m ago•0 comments

Show HN: Spegel, a Terminal Browser That Uses LLMs to Rewrite Webpages

https://simedw.com/2025/06/23/introducing-spegel/
282•simedw•9h ago•132 comments

The Hoyle State (2021)

https://johncarlosbaez.wordpress.com/2021/02/04/the-hoyle-state/
38•gone35•3h ago•7 comments

I built something that changed my friend group's social fabric

https://blog.danpetrolito.xyz/i-built-something-that-changed-my-friend-gro-social-fabric/
477•dandano•3d ago•199 comments

Show HN: Core – open source memory graph for LLMs – shareable, user owned

https://github.com/RedPlanetHQ/core
34•Manik_agg•5h ago•4 comments

Building a Personal AI Factory

https://www.john-rush.com/posts/ai-20250701.html
18•derek•51m ago•7 comments

Muxio: Rust layered stream and RPC toolkit

https://crates.io/crates/muxio
11•zombiej5•2d ago•0 comments

Experience converting a mathematical software package to C++20 modules [PDF]

https://arxiv.org/abs/2506.21654
83•vblanco•8h ago•15 comments

Cua (YC X25) is hiring an engineer

https://www.ycombinator.com/companies/cua/jobs/dIskIB1-founding-engineer-cua-yc-x25
1•GreenGames•5h ago

Ask HN: Who wants to be hired? (July 2025)

48•whoishiring•7h ago•135 comments

When Did Nature Burst into Vivid Color?

https://www.quantamagazine.org/when-did-nature-burst-into-vivid-color-20250627/
77•jandrewrogers•4d ago•51 comments

OpenFLOW – Quickly make beautiful infrastructure diagrams local to your machine

https://github.com/stan-smith/OpenFLOW
254•x0z•15h ago•62 comments

Swearing as a Response to Pain: Assessing Effects of Novel Swear Words

https://www.frontiersin.org/journals/psychology/articles/10.3389/fpsyg.2020.00723/full
24•sega_sai•2d ago•21 comments

Graph Theory Applications in Video Games

https://utk.claranguyen.me/talks.php?id=videogames
44•haywirez•3d ago•4 comments

All Good Editors Are Pirates: In Memory of Lewis H. Lapham

https://www.laphamsquarterly.org/roundtable/all-good-editors-are-pirates
44•Caiero•2d ago•4 comments

Show HN: HackerNewt - Breadth-first exploring HN client for iOS

https://apps.apple.com/us/app/hackernewt-for-hacker-news/id6448201970
34•hnand•6h ago•22 comments

The wanton destruction of a creative-tech era

https://blog.greg.technology/2025/06/30/fastly.html
21•gregsadetsky•3h ago•7 comments

The Hidden Engineering of Liquid Dampers in Skyscrapers

https://practical.engineering/blog/2025/7/1/the-hidden-engineering-of-liquid-dampers-in-skyscrapers
16•chmaynard•2h ago•0 comments

Show HN: Jobs by Referral: Find jobs in your LinkedIn network

https://jobsbyreferral.com/
100•nicksergeant•9h ago•53 comments

Sam Altman Slams Meta's AI Talent Poaching: 'Missionaries Will Beat Mercenaries'

https://www.wired.com/story/sam-altman-meta-ai-talent-poaching-spree-leaked-messages/
73•spenvo•3h ago•152 comments

Show HN: Arch-Router – 1.5B model for LLM routing by preferences, not benchmarks

33•adilhafeez•4h ago•8 comments

1KB JavaScript Demoscene Challenge Just Launched

71•babakode•3h ago•13 comments

Slouching Towards Sensemaking

https://karanchawla.io/2025/06/29/sensemaking
11•karchaw•2d ago•0 comments

Show HN: I built the tool I wished existed for moving Stripe between countries

https://www.stripemove.com/
71•felphos•9h ago•36 comments