Hacker Newsnew | past | comments | ask | show | jobs | submitlogin
Show HN: BPU – An embedded scheduler for stable UART pipelines
11 points by DenisDolya 15 days ago | hide | past | favorite | 5 comments
I recently came across this small ESP32 project and found the design ideas behind it very interesting.

BPU (Batch Processing Unit) is a lightweight embedded scheduling core focused on keeping output pipelines stable under pressure (UART backpressure, limited bandwidth, bursty producers).

Instead of blocking or growing unbounded queues, it: enforces per-tick byte budgets, coalesces redundant events, degrades gracefully under sustained load, exposes detailed runtime statistics.

The repository includes design notes, flow diagrams, and real execution logs, which makes the runtime behavior very transparent.

Repo: https://github.com/choihimchan/bpu_v2_9b_r1

I’ve been working on an ESP-IDF backend for it, and reading through the docs gave me a lot of ideas about observability and backpressure handling in small systems.

Curious what others think about this approach.



Only indirectly related, but it's mildly amusing to see UART backpressure addressed when most serial ports these days are wired up without CTS/RTS, and no XON/XOFF either.

(I break out CTS&RTS whenever I can, & so should everybody else. You don't have to use it. Just route it to wherever the serial ports goes.)


Good point.

A lot of small setups don’t wire CTS/RTS these days, so I wanted to explore a software-side approach as well. But I agree, proper flow control is still very important.


I have been porting an existing pub-sub to Rust (no_std) that runs over serial UART. The published serial protocol is very similar as this one: COBS encoding with CRC32 checksum not CRC16. These docs have a great reference on backpressure for any micro and will be helpful.


Thanks for sharing this, that sounds really interesting.

COBS with CRC32 over UART is very close to the kind of problems I’ve been thinking about too. Glad the docs were helpful!


Thanks for sharing this and for the thoughtful summary. Really glad you found the docs and ideas useful!




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: