Retrotechtacular: Introducing the brand new Acorn Risc Machine

Get ready to be swept off your feet by this Acorn Risc Machine promotional video from the Mid-1980’s (also embedded after the jump). We’re sure most have put it together by now, but for those slower readers, this is the introduction of ARM processors.

The video has a bit of everything. There’s a deadpan narration with just a bit of British accent around the edges. But that’s spiced up considerably by the up-beat synthesizer track playing in the background. You’ll see plenty of programmers in short-sleeve dress shirts, and we challenge you to count the number of mustaches that make it on camera. But jest aside, it’s fun to think of how the advent of this chip affected the world.

This post is just the second installment of our Retrotechtacular series (here’s the inaugural post). We haven’t seen any old movies come in from readers yet. What are you waiting for? Digitize that footage because we want to see it! Of course it doesn’t have to be your own movies, so anything you come across that covers decades-old tech is fair game.

[Read more…]

Emulating ARM on an 8-pin AVR

Falling on the heels of some fabulous ‘lets see what we can emulate on an AVR’ builds we’ve seen, [Dimitri] emulated an ARM Cortex-M0 on an 8-pin ATtiny85.

The emulator is written entirely in AVR assembly. Unfortunately, the instruction set of ATtinys don’t have a multiply instruction, so that had to emulated in a separate piece of code. Even with this addition, the emulator is very small; the core is just over 1300 instructions and small enough to fit on the Flash of the very small ‘tiny85.

Unlike the ATMega running Linux we saw last month, [Dimitri] won’t be doing anything crazy like making the tiniest and worst Linux computer ever. The Cortex-M0 doesn’t have a MMU, so Linux is out of the question. [Dimitri] could go with μCLinux, with the addition of a I2C EEPROM and RAM, but don’t expect a speed demon for an emulated ARM running at 200kHz.

[Dimitri] put all the code up on his webpage, and the installation is just running ‘make.’  It looks easy enough to get up and running very quickly, so we’re sure some bored hardware guru will come up with something interesting to do with this code.

Resizable ARM dev board; just take some off the top

[Bob Alexander’s] most recent project is a hack saw resizable ARM breakout board. He wanted to start using more ARM microcontrollers in his projects and went for a breadboard friendly design. It uses a 40-pin dip package, but if you need the horsepower but not the I/O you can literally cut it down to size. We might recommend grabbing some tin snips, which can cut through a PCB like butter, but to each his own.

The board is based around an STM32 chip. You’ll find a crystal oscillator for the system clock, and a clock crystal if you need it. On the other side of the chip he included a footprint for a voltage regulator. This setup provides a remarkable range of input voltages, accepting from 2 to 3.6 volts without the regulator, and up to 16 volts if the regulator is present. He designed a package footprint that can be easily bridged if there’s no SMD part there. Just make sure you insulate that pad if you are using one with a conductor on the bottom. He explains this in detail in his writeup.

You’ll need a programmer to work with the board. He uses an STM32 Discovery Board for this but there are quite a few other options out there too.

Brute force a password protected PDF using the BeagleBone

The biggest benefit to using the BeagleBone is it’s 700 MHz ARM processor. If you’re just messing around with basic I/O that power is going unused, but [Nuno Alves] is taking advantage of its power. He built a PDF password cracker based on the $85 development board.

We recently saw how easy it is to perform basic I/O using the BeagleBone. Those techniques are in play here, used to drive a character LCD and sample a button input from the breadboard circuit. [Nuno] even published separate posts for each of these peripheral features.

The password protected PDF file is passed to the device on a thumb drive. Since the BeagleBone is running embedded Linux you don’t need to mess around with figuring out how to read from the device. A click of the button starts the process. Currently the code just uses a brute force attack which can test more than 6000 four-character passwords per second.  This is quite slow for any password more than four or five characters long, but [Nuno] does mention the possibility of running several ARM processors in parallel, or using a dictionary (or rainbow table) to speed things up. Either way it’s an interesting project to try on the hardware. You can see his video demo of the device after the break.

[Read more…]

Twiddling an LED using the BeagleBone's embedded Linux

If you comfortable working with 8-bit microcontrollers, the thought of moving to a hardware platform running embedded Linux may be a bit daunting. After all, there’s a lot going on between you and the chips on a board like the BeagleBone seen above. But [Matt Richardson] shows how easy it can be to get at the pins on this device. He put together a primer on hardware control from the embedded shell.

You will remember that the BeagleBone is the newest generation of the BeagleBoard. The ARM processor and other goodies make it a powerful tool, and those already familiar with Linux will be able to get up and running in no time. Just connect the board to your network and SSH into it to get started. [Matt] outlines this setup process in the clip after the break. He then hits the reference manual to find the pinout of the female headers on either side of the board. Each available I/O pin is mapped to the /sys directory and can easily be controlled by echoing your commands to the appropriate files. But [Matt] went a step further than that, writing his own Python library that implements Arduino-style syntax like the digitalWrite() function.

This example should give you enough of a shove to start porting your own libraries over for use with the device. Don’t forget to document your projects and tip us off about them. [Read more…]

Robotic doodle clock

This clock has a robotic twist to it. It will show you the time by drawing it in dry-erase marker. There’s a bit of play in the arm joints and some loose motor precision which results in a wavy font that prompted [Ekaggrat] to name his project the Doodle Clock.

The shape and building material used here really make the timepiece look great. We think if the arm holding the acrylic writing surface had been at right angles this would not look nearly as pleasing. The video after the break shows the bot in action, at first flexing its wrist to switch back and forth between marker and eraser. From there it starts to draw the time, tracing the segments of each digit multiple times to achieve a readable number. The entire thing is driven by an Arduino compatible board mounted on the base of the clock.

This reminds us of that felt-tipped Turing Machine. A variation on that would also make a really nice clock display.

[Read more…]