vote up 5 vote down star
2

It does not need to be a full fledged OS, but at least have multitasking capabilities (i.e. a scheduler).
Please mention what processor architecture it works on.

This is a survey, so exact capabilities are not really important. Think of this as being a place to look at for possibilities when your next 8-bit embedded project comes up...

I realize that most 8-bit micro do not require an OS, but just as a counter-example, Rabbit Semiconductor offers the RCM3710 processor module with 4 serial ports, a 10-BaseT ethernet port, 512K RAM and 512K Flash. All that for $39. All based around an 8-bit Z80 core.

8-bit does NOT necessarily mean extreme resource constraint.

flag

78% accept rate

14 Answers

vote up 3 vote down

I believe Contiki will work. Adam Dunkels does some really cool stuff.

It runs on a lot of platforms, including the Commadore 64.

http://www.sics.se/contiki/

link|flag
vote up 2 vote down

Rabbit Semiconductor has a port of the MicroC/OS II for their processors.

link|flag
vote up 0 vote down

I wrote one a few years ago for the Z80 but the z80 doesn't support hardware multitasking or paging, multitasking is possible but your freedom is pretty limited you have to roll with stuff like like no absolute jumps or different start positions in different programs

link|flag
vote up 3 vote down

This might be an unusual point of view, but I would strongly recommend to think twice and even thrice before deciding to use an OS for a 8-bit computer. OSes are for complex application needs, and 8-bit CPUs are not the best choice for these tasks.

I'm not saying that an OS should never be used for a 8-bit, just that there's less chance that it is the best solution.

link|flag
I completely agree! But keep in mind that I'm more interested in collecting possible OSes. We'll put this down as no OS :-) Also keep in mind that some 8-bit processors allow 512K or even 1M of RAM space...space for complex enough... – Benoit Sep 17 '08 at 16:10
vote up 0 vote down

Softools also provides a OS (called TurboTask) for the Rabbit Processors.

There is a library that provides basic task scheduling for the Rabbit. The library works with the Softools compiler, but not the rabbit compiler.

link|flag
vote up 0 vote down

I have some difficulty in envisaging the type of 8-bit processor you're planning to use here - basically if it's anything powerful enough to run anything like an OS (an H8, for example), you'll almost certainly find that an ARM-cored micro is going to be just as cheap.

link|flag
Just as cheap, but perhaps more power hungry? – seeker Sep 18 '08 at 5:01
vote up 4 vote down

What's the goal here? Embedded OSes tend to cost a lot. (MicroC/OS II, etc)

It sounds like you may be putting OS support ahead of what I consider more important things when it comes to device selection. You should know the general design patterns for the platform you are working on. Don't try to shove PC concepts into the tinyiest of embedded chips like this.

OMFG... Java does NOT belong on an 8 bit processor. I actually tried that Maxix/Dallas DS80C400 chip. It had a simplified OS (read: scheduler) and TCP/IP stack baked on chip, and it looked great on the datasheet. It was a complete disaster. Slow, slow, slow!

I ended up with an FPGA-based soft processor and soft MAC. No OS... Worked great. Once a FIFO bug actually sent packets out so fast that every Windows PC on the network locked up solid handling interrupts (even the mouse locked) until I pulled the power on the dev board.

I've personally found it fairly difficult to write so much code for an 8 bit processor that you even NEED an OS. I'm sure some applications/situations may make it more desirable than I've seen. The only use for an OS that I've found is when you have some complex device with device drivers for a specific OS that you'd like to use, and then it's not a "general OS" question anymore.

Get familiar with the ever-so-common 1ms timer tick + "volatile char g_TASKS[]" global flag list + a simple main() loop that checks task flags and calls subroutines. State machines are your friend. You'll have a much better handle on how your system is going to run. These are the design patterns of 8 bit processors.

Any time you need task A to wait for task B to complete, then add a state machine state to task A, and have task B set that state... or something along those lines.

A much more useful (IMHO) list would be of good 8 bit processors to use, not OSes. Here would be my criteria: low power, excellent debugging (OCD), excellent development environment (or just Eclipse integration), low cost, good C compiler support, and general stability of the debugging platform/debugger/etc.

link|flag
vote up 1 vote down

There is also Uzix, for the MSX based (z80) computers, a Unix Like, Posix Compliant, multi-tasked, preemptive and with a TCP/IP stack implemented.

link|flag
vote up 3 vote down

FreeRTOS

link|flag
vote up 1 vote down

I have used uC/OS on an Z180 (8bit machine). I had to port to our custom banked memory model. But otherwise was great, especially having a detailed book describing all the functionality. And even though it was a RTOS, we still had to use threads etc. very sparingly.

link|flag
vote up 2 vote down

To those suggesting state machines in place of an OS because they have little overhead, you might want to check out Contiki. It is very small and free. It doesn't have a traditional threading model, instead it uses ProtoThreads: http://www.sics.se/~adam/pt/.

ProtoThreads give you something approximating threading semantics without the overhead of a real OS with multi stacks, etc... As a bonus, you don't need any sort of OS to use them Contiki or otherwise.

We've used them on one project with great success. They really make writing complicated code much easier.

link|flag
vote up 0 vote down

HI-TECH Salvo - HI-TECH Salvo features is a cooperative, event-driven, priority-based multitasking RTOS. It is for processors with severely limited RAM (< 256 bytes), works within a hardware call; return stack of 8 levels or less, supports 16 separate dynamic task priority levels, and provides inter-task communication and synchronization, ISR-to-task communication and resource sharing. It is extremely small RAM and ROM footprint, no PUSH/POP stack or stack pointer required, ROMable and extensible. Low interrupt latency, fast context switching, and portable - written in ANSI C, with minimal compiler.

link|flag
vote up 0 vote down

Salvo - The RTOS that runs in tiny places(TM). - Salvo's modest ROM and miniscule RAM requirements mean that you can have event-driven, priority-based, multitasking applications in nearly any single-chip microcontroller, with plenty of room left for your application. With Salvo, you can: Implement new designs quickly * Enhance functionality using existing resources * Improve real-time performance * Multitask.

link|flag
could you combine this answer with your previous one. You are talking about the same thing... – Benoit Sep 18 '08 at 5:20
vote up 1 vote down

This is probably not what you want, but for MSX and Armstrad there is absolutely amazing GUI OS called SymbOS (http://www.symbos.de/). What's amazing about it, is that it was entirely made by one german guy called Prodatron (http://www.prodatron.net/). It has real multitasking and many applications what you would expect from modern OS:

  • SymCommander - Norton Commander clone.
  • SymPlay - video player, videos have to be preprocessed, but after that they run very smooth and simultanously with other applications.
  • SymSee - picture viewer, again pictures must converted into CPC format first.
  • SymAmp - music player, supports tracker modules and even MP3-s with special hardware.
  • Calculator, Minesweeper, Control Panel etc.

I've seen it demoed by it's author and the only comment from audience was "You must be grazy!". Nobody had ever seen such features on 8-bit MSX computer before.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.