Linked: Driving TFEL with RP2040: Offloading the CPU step by step

This blog shows how to leverage the PIO found on RP2040 to drive a not-so-common type of display. Combined with the large SRAM found on the RP2040, this is quite usable.

(From: https://www.zephray.me/post/rpi_pico_driving_el/)

I thought this was a really good introduction to using the PIO blocks in the RP2040 to drive a peripheral, rather than bit-banging using the CPU.

Linked: CHZ-Soft – Preserving a floppy disk with a logic analyzer and a serial cable

Being involved with retro computers, I have a few floppy disks (of the 3.5-inch variety) that I would like to preserve as faithfully as possible. Of course, I know there are dedicated devices for doing that, such as the Kryoflux or the SuperCard Pro. But it occurred to me that I already own the required hardware to capture the low-level data from a floppy disk: my Saleae Logic 8 logic analyzer.

(From: https://www.chzsoft.de/site/hardware/preserving-a-floppy-disk-with-a-logic-analyzer/)

Another semi-automated way to capture raw (magnetic flux) disk images from floppy disks, this one using a drive and a logic analyzer with some post-processing. In addition to the other tools mentioned in the post, AppleSauce is a great option.

Linked: GDBWave – A Post-Simulation Waveform-Based RISC-V GDB Debugging Server | Electronics etc…

I want to talk about first simulating an RTL design that contains of soft CPU, and debugging the firmware that ran on that soft CPU after the simulation has completed.

(From: https://tomverbeure.github.io/2022/02/20/GDBWave-Post-Simulation-RISCV-SW-Debugging.html)

Novel idea of using GDB to debug software running on a soft-core processor in an FPGA simulation, AFTER the simulation is completed!

Linked: A/UX Server Penelope

Between the years 1987 and 1995, Apple Computers, Inc produced a distribution of Unix for the 680×0-based Macintosh. Based on System V release 2.2, Apple Unix (A/UX) provided a familiar Macintosh Finder environment with the ability to run both Unix and Mac applications. While the two products share no code, A/UX was the “conceptual ancestor” of OS X.

(From: https://www.aux-penelope.com/index.htm)

Once I get a BlueSCSI or a larger HD in my Centris 650, I’m definitely going to install A/UX on a partition just for fun.

Linked: How to implement and use .noinit RAM

Imagine there’s an embedded system that needs to persist some state when the processor restarts (either intentionally or due to a catastrophic error).

This could be some external hardware information (what’s the position of a motor or actuator?) or a method to communicate the reset to the user (display some information on the device’s display).

A simple way to store information through a reboot is to use what’s called “non-initialized” memory.

(From: https://interrupt.memfault.com/blog/noinit-memory)

Neat! Good quick tutorial.

Linked: Cortex-M MCU Emulation with Renode | Interrupt

Renode is an open-source Emulator for embedded platforms. Today, it supports x86 (Intel Quark), Cortex-A (NVIDIA Tegra), Cortex-M, SPARC (Leon), and RISC-V based platforms.

Renode can take the same firmware you are running in production, and run it against emulated cores, peripherals, and even sensors and actuators. Better yet, its extensive networking support and multi-system emulation make it a shoe in for testing systems made up of multiple devices talking together.

With Renode, you can start development before your hardware is ready, test your firmware without deploying racks of hardware, and shorten your iteration cycles by cutting out flash loading delays

(From: https://interrupt.memfault.com/blog/intro-to-renode)

This post has a good walkthrough on setting up Renode, including customizing emulated hardware and integrating with the automated testing framework.

Linked: It’s Time for Operating Systems to Rediscover Hardware | USENIX

A glance at this year’s OSDI program shows that Operating Systems are a small niche topic for this conference, not even meriting their own full session. This is unfortunate because good OS design has always been driven by the underlying hardware, and right now that hardware is almost unrecognizable from ten years ago, let alone from the 1960s when Unix was written. This change is receiving considerable attention in the architecture and security communities, for example, but in contrast, so-called OS researchers are mostly in denial. Even the little publishable OS work that is not based on Linux still assumes the same simplistic hardware model (essentially a multiprocessor VAX) that bears little resemblance to modern reality. In this talk, I’ll speculate on how we came to this unfortunate state of affairs, and what might be done to fix it. In particular, I’ll argue for re-engaging with what computer hardware really is today and give two suggestions (among many) about how the OS research community can usefully do this, and exploit what is actually a tremendous opportunity.

(From: https://www.usenix.org/conference/osdi21/presentation/fri-keynote)

As someone who is interested in embedded systems, computer architecture, and operating systems, I found this talk highly enjoyable.

Linked: Learning Electronics: Tips and Tricks for using ESP8266 in my circuit designs « RAYSHOBBY.NET

This post documents some of the tips and tricks I learned while integrating ESP8266 into my own circuit designs. Some of them help reduce the components needed thus minimizing the cost, while others have to do with selecting and using GPIO pins. For breadboard prototyping, you can certainly use one of the popular ESP8266 development boards, like NodeMCU, WeMos etc. But what I want to cover in this post is to integrate a ESP8266 module (such as ESP-12F) into the circuit design, without using the development boards.

(From: https://rayshobby.net/wordpress/tips-and-tricks-for-using-esp8266/)

I need to remember to consider the ESP8266 and ESP32 for my hobby projects. There are some good tips here.