frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Open in hackernews

ESP32-S31

https://www.espressif.com/en/products/socs/esp32-s31
95•volemo•1h ago

Comments

rie_t•1h ago
Love to see more RISC-V in the wild
randomint64•56m ago
Espressif is on fire! And the CPU even has SIMD instructions!

RISC-V cores is a big deal for embedded systems because now compiling for SoCs is only a matter of `rustup target add riscv32imac-unknown-none-elf` instead of downloading half-broken proprietary toolchains and SDKs.

Take a look at https://kerkour.com/introduction-to-embedded-development-wit... and https://kerkour.com/rust-esp32-pentest to get started with modern (Rust ;) embedded development.

cassepipe•33m ago
Curious: What does the "imac" stand for in the architecture target name ?
JdeBP•26m ago
There are a few lettered extensions to the base RV32I instruction set. e.g.:

* https://docs.riscv.org/reference/isa/unpriv/m-st-ext.html

mentalpagefault•24m ago
IMAC are the RISC-V extensions supported:

I = Base integer instruction set, 32-bit

M = Standard extension for integer multiplication and division

A = Standard extension for atomic instructions

C = Standard extension for compressed instructions

https://en.wikipedia.org/wiki/RISC-V#ISA_base_and_extensions

cassepipe•4m ago
Thanks.I can't believe they chose non-arcane, memory-friendly letters. Kind of rare in naming hardware I feel (unless it's not ?)
NooneAtAll3•17m ago
where did you find it?
tosh•31m ago
very interesting, do you have a pointer with more info on what kind of SIMD support it has?
bobmcnamara•6m ago
Hopefully comparable or better than ESP32S3.

But with the weird alignment thing fixed

phkahler•26m ago
>> And the CPU even has SIMD instructions!

Yes, but it looks like there is no hardware floating point. The description of the CORDIC module indicates fixed-point calculations, which is consistent with the lack of any reference to floating point.

I am happy the have CAN-FD and Motor PWM module, but nowhere did I see conversion times listed for the ADC. For motor control I demand 1uS conversion time or less, and in the last year I've switched from fixed point to floating point after holding off on that switch for ~15 years.

NooneAtAll3•18m ago
where did you find cordic mention?
polpo•8m ago
From the ESP32-S31 datasheet: "Single-precision floating-point unit (FPU) per core"
Havoc•9m ago
Nice. Been meaning to try rust on these sort of devices but the riscv I saw thus far seemed to be mixed arm and riscv which seemed weird
Imustaskforhelp•54m ago
The 1GB bandwidth is interesting. It also has Simd instructions too.

Could this theoretically be used as a router or wireguard vpn instance?

KZerda•4m ago
Theoretically, yeah. Though at 320Mhz, with only 2.4ghz wireless, even with two cores, I doubt it's going to get anywhere near the throughput to fill the gigabit connection.
jeremywho•36m ago
When can we buy these?
Scene_Cast2•32m ago
The dev boards are already up for sale. I'm personally looking forward to the modules being stocked on LCSC, no idea when though.
topspin•16m ago
> The dev boards are already up for sale.

I didn't expect to see that for a while yet. Not the usual Espressif announce and wait a year+ pattern.

Aurornis•36m ago
Good to have WiFi and wired ethernet on the same part again.

Although we lost the MIPI support that the P4 dual-core RISC-V line has.

tetris11•15m ago
How does wired internet technically work on these chips? Is it just 8 dedicated GPIO pins?
skybrian•30m ago
I'm interested in audio out because I dabble in musical instruments.

What's the state of Bluetooth audio out on microcontrollers? Is low latency and high quality output possible?

tliltocatl•13m ago
Is there any reason you want wireless? Bluetooth audio is a disaster, AFAIK. You don't want to use it for music. Just go wired, the ether is too cramped already.
oritron•12m ago
Low latency in Bluetooth audio comes down to codecs and the best are proprietary.

If you want to really cut down latency and need wireless with hardware like this, you could use a second ESP32 and send your own bitstream between them.

frikk•28m ago
I've been building hobby LED art projects with WLED (exclusively built on the ESP32 platform). It's been a blast. These little boards are so powerful and the open source community continues to amaze me.

My preferred controller platform is of the QuinLED line - comes with power distribution, voltage regulators, fat copper lines, configurable data-line resistors, and smart auxiliary hardware support all for an affordable $30-$50 per controller. (quinled.info)

<https://kno.wled.ge/> - WLED homepage and probably my favorite clever URL of all time.

oritron•17m ago
The specs look great, will see how long it takes to get these as WROOM modules or on little dev boards; my two form factors of choice for Espressif devices. I'm also curious about the pricing, so far they've impressed me with how much more you get in successive generations at a similar price.

If you're excited about the (relatively) speedy RISC-V cores and SIMD, look at the P4 which is available now. It has a slightly faster clock but no wireless: https://products.espressif.com/#/product-comparison?names=ES...

There's some cool work out there using the dsp functionality and built in image handling to crunch a lot of pixel data, which should work similarly on the S31: https://www.reddit.com/r/WLED/comments/1ry2jd7/wledmmp4_with...

nubinetwork•11m ago
This looks like a nucleo144, except its risc-v... but why would I use it over said nucleo144?
bobmcnamara•5m ago
WiFi+BLE?
mort96•1m ago
And even if you don't need WiFi + BLE for a particular project, you may need it for other projects, and it might have value for you to standardise on one ecosystem.
hart_russell•10m ago
Any reason why this device wouldn't have Z-Wave? Is the wireless protocol significantly different than Thread and Zigbee?
Aurornis•8m ago
This device only has a 2.4GHz radio. Z-Wave is sub-1GHz.
mherkender•5m ago
I don't know for sure but Bluetooth, WiFi and Zigbee are on the same frequency band. Z-Wave is not.

(at least in the US, not sure about other countries)

orphea•5m ago
It being RISC-V is awesome, but how does it make sense that it's S series when S series have been Xtensa cores? Why is it not C series?
mort96•5m ago
This looks like the long-awaited replacement for the original ESP32. The S and C series have been relatively low performance (the S better than the C but stuck on the outgoing Xtensa architecture), the P4 is powerful but lacks wireless. This is a relatively high performance, dual core MCU with wireless; a nice default option for low volume designs where being able to copy a previous implementation is more important than saving a few cents. Just like the ESP32. Nice.
zuzululu•2m ago
How do I order a few samples, seem like there is a MOQ ?

Also I want to dive into hardware stuff but I'm always clueless as to what I do afterwards when this would arrive? Are you using a generic board or are you ordering and designing PCBs to hook this up to?

What are you using it for ? How do I go from a prototype to mass production via kickstarter?

jml7c5•1m ago
Previous discussion from two months ago, when this was announced: https://news.ycombinator.com/item?id=47561678

The Bloat

https://milkandcigarettes.com/notes/devlog/the-bloat
1•tarxzvf•1m ago•0 comments

Facing life-threatening miscarriage in Arkansas, calls to governor didn't help

https://www.cnn.com/2026/05/28/health/arkansas-miscarriage-abortion-ban-propublica
2•orwin•2m ago•1 comments

The Relaunch of the Old West and Why I Chose Vanilla PHP

https://blog.alexseifert.com/2026/06/02/the-relaunch-of-the-old-west-and-why-i-chose-vanilla-php/
1•SeenNotHeard•3m ago•0 comments

Batching API Calls

https://www.mostlypython.com/batching-api-calls/
1•speckx•4m ago•0 comments

Show HN: Mashines.dev – Live-migrate microVMs between hosts without restarting

https://mashines.dev/
1•ktaraszk•6m ago•0 comments

Impermeabiliza uses AI to modernize waterproofing in Valencia

https://impermeabiliza.net/
1•ignival•9m ago•0 comments

Microsoft unveils new AI models

https://microsoft.ai/models/
4•helloplanets•10m ago•0 comments

Tesla Cybertruck resale value plunges amid sales slump

https://www.msn.com/en-us/money/companies/tesla-cybertruck-resale-value-plunges-amid-sales-slump/...
4•petethomas•10m ago•1 comments

AI enthusiasts racing against time; AI skeptics are racing against entropy

https://charitydotwtf.substack.com/p/ai-enthusiasts-are-in-a-race-against
1•SLHamlet•12m ago•0 comments

AgentSight: System-wide AI agent tracing and monitoring with eBPF

https://github.com/eunomia-bpf/agentsight
2•tanelpoder•12m ago•0 comments

I believe a whole generation of developers miss how open source used to work

https://twitter.com/mitsuhiko/status/2062181646804152626
3•tosh•13m ago•1 comments

Gooey: A GPU-accelerated UI framework for Zig

https://github.com/duanebester/gooey
3•ksec•13m ago•0 comments

Network State Propaganda

https://capirates.substack.com/p/theyre-telling-you-exactly-what-theyre
3•tjcrowley•14m ago•0 comments

The 15-minute city is a dead end

https://blogs.lse.ac.uk/covid19/2021/05/28/the-15-minute-city-is-a-dead-end-cities-must-be-places...
1•Anon84•16m ago•0 comments

Book of Cron Job [fiction]

https://www.nature.com/articles/d41586-026-01716-0
2•apotheosized•16m ago•0 comments

Show HN: Hive Trust – Ed25519-signed benchmarks for every AI inference primitive

https://thehiveryiq.com/trust/
1•thehivery•17m ago•0 comments

Knowable – Open-Source Personal AI Tutor on macOS

https://knowable.ca/
2•samuelzxu•18m ago•1 comments

See SBA Loans Around You

https://www.loanround.com
1•zarie•19m ago•0 comments

Safe Made Easy Pt.2: Don't Fear the Ref

https://ergeysay.github.io/safe-made-easy-pt2.html
3•ergeysay•19m ago•0 comments

I benchmarked Opus 4.8 vs. GPT 5.5 on 2 open source repos

https://www.stet.sh/blog/opus-48-vs-gpt-55-vs-opus-47-vs-composer-25
3•bisonbear•19m ago•0 comments

The Download: Trump's new AI order, and smart glasses for warfare

https://www.technologyreview.com/2026/06/03/1138322/the-download-trump-ai-order-smart-glasses-war...
1•joozio•21m ago•0 comments

10M requests in my bot black hole

https://gladeart.com/blog/10-million-requests-in-my-bot-black-hole-here-is-some-information
1•itsJustTrivial•22m ago•0 comments

Stats from 30K AI debates: Opus 4.7 is the most influential model

https://opper.ai/ai-roundtable/stats
5•felix089•22m ago•1 comments

How to Build an ML Framework in Rust, from Scratch, in a Weekend

https://www.erikkaum.com/blog/zml/index.html
1•tosh•23m ago•0 comments

NASA Says Farewell to Maven Mars Mission

https://www.nasa.gov/news-release/nasa-says-farewell-to-maven-mars-mission-hosts-media-call-today/
2•ironyman•24m ago•1 comments

Why open standards matter for AI infrastructure

https://openenvelope.org/writing/open-standards-ai-infrastructure/
2•ashconway•25m ago•0 comments

Compiling Zig to RISC-V

https://www.erikkaum.com/blog/advent-05/index.html
3•tosh•26m ago•0 comments

Counterfeit G.Skill and V-Color DDR5 modules hit Chinese marketplaces

https://www.tomshardware.com/pc-components/dram/counterfeit-g-skill-and-v-color-ddr5-modules-hit-...
3•speckx•27m ago•0 comments

The Public Should Own Half of the Big A.I. Companies

https://www.sanders.senate.gov/op-eds/the-public-should-own-half-of-the-big-a-i-companies/
26•droidjj•27m ago•8 comments

If AI Data Centers Are So Great, Why Are They Being Built in Secret?

https://www.thebrockovichreport.com/p/if-data-centers-are-so-great-why
4•thisislife2•29m ago•0 comments