|
Although this short course is billed as "Baking Pi - Operating System Development" it is more realistically about bare metal programming in ARM assembly language. That is, programming without the help of an OS.
This is a course designed to explain the real basics of computing - there is nothing between you and the hardware. You write an ARM assembly language program and a basic loader gets it running on the Raspberry Pi.

What you do is generate a machine code file and copy this onto an SD card that has a bootable OS on it. That is, you replace kernel.img with the file that contains your own program. This is one sense in which you are writing an OS - your program runs in place of the OS.
Initially the program simply flashes an LED - but not by calling provided subroutines. Instead you program the hardware chip, the GPIO controller, directly. From here there are a few more lessons using the LED and then the built-in timer is described. Fun with the LED culminates in a Morse code flasher.
From here we move on to programming direct to the screen. This is more than just working with a memory-mapped graphics facility. The graphics chip is as powerful as the CPU and so working with it is a little more complicated. Several lessons work up from random dots to text.
The final two lessons deal with working with input devices. The first of them starts off with an admission that programming this sort of input from scratch is tough and so some libraries are used to make it easier. I can understand the student being slightly let down at this point, but it is how things are done in the real world. You don't write a USB library if one is available, even if you are building an OS. At the end of the two lessons you have a keyboard and screen program that can be used as a dumb terminal.
The tools used are the YAGARTO ARM assembler hosted by Eclipse on Windows, Mac or Linux. The instructions on how to set up the tools are not particularly detailed and, if you have any problems with the course, it will be getting the assembler up and running.
Overall this looks like a good way to get back to basics, and a Raspberry Pi is cheap enough to buy one to just play with ARM assembler.
Great fun.

Computer Model Explains High Blood Pressure 12/05/2013
If you are not a medic then presumably you, like me, thought that we knew most of the basics of what causes high blood pressure as we age. It turns out that we really didn't and now a new computer mod [ ... ]
|
Task.js Asynchronous Tasks In JavaScript 30/04/2013
Task.js is a Mozilla experiment in making asynchronous cooperative tasking in JavaScript look elegant. It works by re-purposing the new yield command in the latest version of JavaScript - this is very [ ... ]
| | More News |
|