Blue Pill As A Nerdy Swiss Army Knife

Not everyone can afford an oscilloscope, and some of us can’t find a USB logic analyzer half the time. But we can usually get our hands on a microcontroller kit, which can be turned into a makeshift instrument if given the appropriate code. A perfect example is buck50 developed by [Mark Rubin], an open source firmware to turn a STM32 “Blue Pill” into a multi-purpose test and measurement instrument.

buck50 comes with a plethora of functionality built in which includes an oscilloscope, logic analyzer, and bus monitor. The device is a two way street and also comes with GPIO control as well as PWM output. There’s really a remarkable amount of functionality crammed into the project. [Mark] provides a Python application that exposes a text based UI for configuring and using the device though commands and lots of commands which makes this really nerdy. There are a number of options to visualize the data captured which includes gnuplot, gtk wave and PulseView to name a few.

[Mark] does a fantastic job not only with the firmware but also with the documentation, and we really think this makes the project stand out. Commands are well documented and everything is available on [GitHub] for your hacking pleasure. And if you are about to order a Blue Pill online, you might want to check out the nitty-gritty of the clones that are floating around.

Thanks [JohnU] for the tip!

3D On The ZX Spectrum 48K

There are times when a project becomes such a big part of a maker’s life that they find themselves revisiting it even years later. [Thanassis] combined this phenomena with his love for the ZX Spectrum when he ported one of his old 3D rendering projects to the ZX Spectrum 48K. The video below shows the result, and they speak for themselves.

The roots of this project go back around three years, when [Thanassis] posted a similar project for the ATMega328 which employed fixed point math tricks for achieving the graphics. The code needed to be even tighter to run on the Spectrum, eventually getting boiled down to just a handful of calculations. This got the proof of concept working with the z88dk compiler, but it wasn’t quite fast enough.

In the end, hand assembly optimizations nearly doubled the performance to a blistering 10 frames per second. There’s also a version that kicks it all the way up to 40 FPS, but only if you give it a few minutes to do the calculations ahead of time. With a few teaks and the right display, this project could produce some very cool retro visuals.

Continue reading “3D On The ZX Spectrum 48K”

High Speed The Way We Want It

The one thing we have learned over the current pandemic is that we need the internet, and the faster the better. Though cost is surely a hurdle, the amount of bandwidth available has its bottlenecks rooted from the underlying technology. Enter new technology from an Australian Research team who have claimed to have field tested internet speeds as fast at 44.2 terabits per second.

The breakthrough in bandwidth is attributed to a new optical chip that employs optical frequency combs or micro-comb, and has been published by [Corcoran et al] of Monash University. The team exploits the ability of certain crystals to create resonant optical fields called solitons and these form highly efficient optical transmission system. For the uninitiated, optical frequency combs are an optical spectrum of equidistant lines whose values if fixed, can be used to measure unknown frequencies. The original discovery earned Roy J. Glauber, John L. Hall and Theodor W. Hänsch the Nobel Prize in Physics in 2005, and though it is a relatively new field it has seen a lot of activity in the research community.

The experimental setup has a resonator with a free spectral range spacing of 48.9GHz, and from the generated optical fields or lines, 80 were selected. Using a side-band modulator the bands were doubled and eventually with 64 QAM modulation facilitated a symbol rate of 23 Gigabaud. Now at this point, the paper says that this experiment is still an under-utilization of the available resources. The extra connectivity speed may be helpful in gaming and streaming but we will be needing faster drives to get our emails attachments downloaded faster. If you are inspired and want to play with lasers and optical communications, check out the DIY Laser Optical Link.

Thanks [Anil Pattni] for the tip.

Instruction Set Hack For Protected Memory Access

The nRF51 Series SoCs is a family of low power Bluetooth chips from Nordic Semiconductor that is based on ARM Cortex cores. The nRF51822 has the Cortex M0 core and is used in a lot of products. [Loren] has written a blog post in which he claims to be able to circumvent read back protection on the chip, thus giving access to the ROM, RAM and registers as well as allow for interactive debugging sessions.

The hack stems from the fact that the  Serial Wire Debug or SWD interface cannot be completely disabled on these chips even if the Memory Protection Unit prevents access to any memory regions directly. The second key piece is the fact that CPU can fetch stuff from the code memory. Combined with the SWD super powers to make changes to the registers themselves, this can be a powerful tool.

Continue reading “Instruction Set Hack For Protected Memory Access”

The ATtiny Series Is A Great Companion In Isolation

As a consequence of the social distancing and self isolation, many a maker has been searching for ways to cure boredom. So what happens when you put a maker in a closed space with electronics parts. The answer is a bunch of random microcontroller projects that help beat boredom. [Danac1886] posts a video with a bunch of experiments with the ATtiny series of microcontrollers which can be a source of time-killing inspiration for these tough days of solitude.

The video is based upon a variety of controllers ranging from the ATtiny85 to the ATtiny84 and even includes the ATtiny2313. There is also a project with the ATtiny10, an SMD SOT23-6 package that is quite amazing to behold. All the devices can be programmed using the Ardino as an ISP so all you need is another Arduino lying around in case you do not have an AVR ICSP.

As for the projects themselves, there is an assortment of things that start with the basic blinking LED, adding an I2C LCD and then moving on to a 7 segment display counting up with variable speed controlled with a pot. We really loved how much these tiny projects inspire and can help someone get started with basic electronics and programming.

If you are looking to get started, have a look at the Jumbo LED with the Attiny10 and we assure you, it will brighten your day.

Continue reading “The ATtiny Series Is A Great Companion In Isolation”

Impractical Switches For The Bored Maker

Cabin fever: the inability to socialize with other humans does weird things to the human brain. Then again some of us are born to stand out, and one such amazing maker, [Lee], is spending time making weird switches from basically anything.

So what would you consider weird? How about using a piece of pasta? How about using the conductivity of an empty sink? There is even an experiment with breakfast cereal, though we do not recommend it for production use. [Lee] continues to pour experiments into Twitter and recently has gotten some conductive tape. Stick some on a game joystick and you got yourself an instant switch on a switch.

These experiments prove that there is a lot you can do with the stuff you have around your house and the other end of the circuit doesn’t necessarily need to be a humble LED. You could get more interesting results with adding the likes of a microcontroller like an ATtiny. Coupling it with a DIY LED badge would be a great idea and we’d love to see what you come up with.

Google’s Pigweed For ARM Development Is A Nice Surprise

Setting up an environment for Embedded Development was traditionally a pain and so vendors provide integrated development environments to help bridge the gap. Google has open-sourced their version of an embedded targeted environment designated as embedded-targeted libraries which they trademarked Pigweed.

Google trademarked Pigweed with the U.S. Patent and Trademark Office in February and it popped up on the Google Open Source Blog along with some details.

The repository contains what Google is calling modules but taking a better look reveals that it a little more than that. Packaged in a Python Virtual Environment is a number of tools including an ARM compiler, the clang-format tool and Python 3.8 interpreter which runs more than a few things. The modules that come with Pigweed assist developers by running micro-automations such as the pw_watch module that monitors files for change and triggers a build, test and even flash and debug on hardware. There is also a module that allows pre-submit checks such as linting and formatting.

Google still does not consider this offering production ready though from what we have seen so far, it is a great place for many to start experimenting with for their embedded development automation needs. Anyone tried it out yet?

If you have been inspired with the amazing powers of automation and want to dive in yourself, have a look at Software Development in BASH and Continuous Integration with Python.