OnlineCourse/PcEmulation

This is developer hardcore area

Firmware experiments by compiling and running the firmware on PC.

The code can be found in CVS as of today (2005-01-13). It's been tested by compiling both the emulator and the firmware. But no further testing is done! Use released firmware from GenBoard/UnderDevelopment/FirmwareChanges unless doing tabletesting!!!

The CVS is tagged before this commit, so one can always back out...

Compiling the firmware is done using make -f EmuMakefile. Connect to it with MegaTunix using the serial port called /tmp/tty.

Next action is:

The overall plan is to:

This is a good way to get an understanding of:

This is a wonderful plan. It will be especially nice when we have very complex network of powerful ARM computers.

The hard part is to split low level functions (such as those tweaking AVR's registers) from calculations.

Unsolved today: async executing of eventqueue events from heap. This is not high priority, as it is not strictly needed to test userspace calcs (and most stuff is moving to userspace, even trigger processing maybe).

Let me show an example: firmware should use getters to read sensor data like


Get the emulator running...

Today, it's not painless to get the emulator running smoothless.

The instructions provided make the transition a little smoother:

Before compiling the emulator:\nÿ1ÿ

Compilation of emulator:\nÿ2ÿ

You must configure your LCD as with:\nÿ3ÿ

Otherwise, you will get LOTS of LCD out of bounds messages. A few (~4) is Ok.

Yes; 100% CPU is normal. :(

Any instructions / tips / known tricks to run it in gdb (ddd / whatever)? It might be a good idea to do prototyping in C instead of JAVA in the future, if we can conveniently work with it. This is how I've done most of my firmware work. 'gdb ./vems' and you should be up and running. If you uncomment the compiler lines with '-pg' in EmuMakefile, you will add profiling also, not very useful ATM though. ddd is only a FE to gdb, so it should also work straight out of the box. I've tried to link it with 'efence', but that wouldn't work.